summaryrefslogtreecommitdiff
path: root/src/muxSocket.h
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
committerOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
commitfffd213c8cba2135afda493d797c41c10354770e (patch)
treebb5eea1b12871d8c3fed0e687d83be3e504d11b2 /src/muxSocket.h
parentsvn cleanup (diff)
big svn cleanup
Diffstat (limited to 'src/muxSocket.h')
-rw-r--r--src/muxSocket.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/muxSocket.h b/src/muxSocket.h
new file mode 100644
index 0000000..e32c45d
--- /dev/null
+++ b/src/muxSocket.h
@@ -0,0 +1,27 @@
+#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();
+
+private:
+ std::string filename_;
+};
+
+
+#endif // _SYNCSOCKET_H