summaryrefslogtreecommitdiff
path: root/syncSocket.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2007-12-12 15:46:07 +0000
committerOthmar Gsenger <otti@anytun.org>2007-12-12 15:46:07 +0000
commita584094f7270a298b29f7a8106f258a14c9e1066 (patch)
treeac5e3734b7f4b6ed21217f48420767ba287e69c0 /syncSocket.cpp
parentadded printing of sync information to stdout (diff)
added newline
Diffstat (limited to 'syncSocket.cpp')
-rw-r--r--syncSocket.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/syncSocket.cpp b/syncSocket.cpp
index 1fe19a9..f22ad21 100644
--- a/syncSocket.cpp
+++ b/syncSocket.cpp
@@ -53,10 +53,12 @@ void SyncSocket::OnAccept()
void SyncSocket::OnRawData(const char *buf,size_t len)
{
+ std::cout << "recieved sync inforamtaion:"<< std::endl;
for(size_t index=0;index<len;index++)
{
std::cout << buf[index];
}
+ std::cout << std::endl;
}
//void StatusSocket::InitSSLServer()
//{