summaryrefslogtreecommitdiff
path: root/muxSocket.h
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2008-02-28 20:52:02 +0000
committerErwin Nindl <nine@wirdorange.org>2008-02-28 20:52:02 +0000
commit24cafee6154b7e4e3b206f8a88fa08ffca11b2b1 (patch)
treed8841d8650d0a25e5c01af85b2dbc1681b5ab660 /muxSocket.h
parentsync bugfix (diff)
added file parameter to anymux
modified makefile
Diffstat (limited to 'muxSocket.h')
-rw-r--r--muxSocket.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/muxSocket.h b/muxSocket.h
index 9b431b4..e32c45d 100644
--- a/muxSocket.h
+++ b/muxSocket.h
@@ -8,15 +8,19 @@
using namespace SOCKETS_NAMESPACE;
#endif // SOCKETS_NAMESPACE
+
class MuxSocket : public TcpSocket
{
public:
- MuxSocket(ISocketHandler& );
+ MuxSocket(ISocketHandler&);
void OnAccept();
// void Init();
// void InitSSLServer();
+
+private:
+ std::string filename_;
};