summaryrefslogtreecommitdiff
path: root/src/sock/sock.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:45 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:45 +0200
commit9dcec1feba68dc5ba38cdc634f5bf113c0f77348 (patch)
tree1d3b0191f4377b0b93ebc67b989e4b8a4f9c3671 /src/sock/sock.h
parentd34015c5ba231b95de20e9fcd7a33c5b2b9a1006 (diff)
tagging yhttpd-0.7.2yhttpd-0.7.2
Diffstat (limited to 'src/sock/sock.h')
-rwxr-xr-xsrc/sock/sock.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/sock/sock.h b/src/sock/sock.h
index 264d9d1..65fe756 100755
--- a/src/sock/sock.h
+++ b/src/sock/sock.h
@@ -11,7 +11,6 @@
#include <netdb.h>
#include "../reqp.h"
-#include "../chat/user.h"
#include "../thrd/pool.h"
#include "../maps/shashmap.h"
@@ -71,17 +70,11 @@ public:
void clean_ipcache();
// the chat stream there all the chat messages will sent through.
- void chat_stream( socketcontainer* p_sock, user* p_user, map<string,string> &map_params ); //<<
- virtual int _send(socketcontainer *p_sock, const char *sz, int len);
- virtual int _read(socketcontainer *p_sock, char *sz, int len);
- virtual int _close(socketcontainer *p_sock);
+ virtual inline int _send(socketcontainer *p_sock, const char *sz, int len);
+ virtual inline int _read(socketcontainer *p_sock, char *sz, int len);
+ virtual inline int _close(socketcontainer *p_sock);
virtual void _main_loop_init();
-#ifdef OPENSSL
-
- virtual bool _main_loop_do_ssl_stuff(int& i_new_sock);
-#endif
-
- virtual socketcontainer* _create_container(int& i_sock);
+ virtual inline socketcontainer* _create_container(int& i_sock);
virtual int _make_server_socket(int i_port);
#ifdef NCURSES