summaryrefslogtreecommitdiff
path: root/syncClientSocket.h
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-02-28 20:33:46 +0000
committerOthmar Gsenger <otti@anytun.org>2008-02-28 20:33:46 +0000
commit2dd4b9e3a34c3c94fd475de7472e7244e83a48fa (patch)
treef4a13055c9b4672138344dd45488018229acc69b /syncClientSocket.h
parentremoved newlines from muxsocket (diff)
sync fixes
Diffstat (limited to 'syncClientSocket.h')
-rw-r--r--syncClientSocket.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/syncClientSocket.h b/syncClientSocket.h
index 17dd518..1909ebb 100644
--- a/syncClientSocket.h
+++ b/syncClientSocket.h
@@ -5,6 +5,11 @@
#include "Sockets/ISocketHandler.h"
#include "connectionList.h"
#include "syncCommand.h"
+#include <sstream>
+#include <iostream>
+#include <string>
+
+
#ifdef SOCKETS_NAMESPACE
using namespace SOCKETS_NAMESPACE;
@@ -20,6 +25,7 @@ public:
void OnRawData(const char *buf,size_t len);
private:
ConnectionList & cl_;
+ std::stringstream iss_;
};