summaryrefslogtreecommitdiff
path: root/muxSocket.h
diff options
context:
space:
mode:
Diffstat (limited to 'muxSocket.h')
-rw-r--r--muxSocket.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/muxSocket.h b/muxSocket.h
new file mode 100644
index 0000000..9b431b4
--- /dev/null
+++ b/muxSocket.h
@@ -0,0 +1,23 @@
+#ifndef _MUXSOCKET_H
+#define _MUXSOCKET_H
+
+#include "Sockets/TcpSocket.h"
+#include "Sockets/ISocketHandler.h"
+
+#ifdef SOCKETS_NAMESPACE
+using namespace SOCKETS_NAMESPACE;
+#endif // SOCKETS_NAMESPACE
+
+class MuxSocket : public TcpSocket
+{
+public:
+ MuxSocket(ISocketHandler& );
+
+ void OnAccept();
+// void Init();
+
+// void InitSSLServer();
+};
+
+
+#endif // _SYNCSOCKET_H