summaryrefslogtreecommitdiff
path: root/src/muxSocket.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-04-12 12:38:51 +0000
committerChristian Pointner <equinox@anytun.org>2008-04-12 12:38:51 +0000
commit6f1742b504d08a097f220c5562c02e107dc7af83 (patch)
tree1e659f04f3fd225b4f714636c59e89ae83f8915b /src/muxSocket.cpp
parentanytun-config can add more than one route at once (diff)
cleaned up confusing names for different options
Diffstat (limited to 'src/muxSocket.cpp')
-rw-r--r--src/muxSocket.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/muxSocket.cpp b/src/muxSocket.cpp
deleted file mode 100644
index 0e0a43f..0000000
--- a/src/muxSocket.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-#include <sstream>
-#include <iostream>
-#include <fstream>
-#include <string>
-
-#include "anymuxOptions.h"
-
-#include "Sockets/Utility.h"
-#include "muxSocket.h"
-
-
-#ifdef SOCKETS_NAMESPACE
-using namespace SOCKETS_NAMESPACE;
-#endif // SOCKETS_NAMESPACE
-
-
-MuxSocket::MuxSocket(ISocketHandler& h) : TcpSocket(h), filename_(gOpt.getFileName())
-{
- SetConnectTimeout(12);
-}
-
-
-void MuxSocket::OnAccept()
-{
- std::ifstream file(filename_.c_str());
- if( file.is_open() )
- {
- std::string line;
- while( !file.eof() )
- {
- getline( file, line );
- Send( line );
- }
- file.close();
- }
-
- //TODO Locking here
-}
-
-//void StatusSocket::InitSSLServer()
-//{
-// InitializeContext("server.pem", "keypwd", SSLv23_method());
-//}
-//
-//
-//void StatusSocket::Init()
-//{
-// EnableSSL();
-//}