diff options
author | Othmar Gsenger <otti@anytun.org> | 2007-12-12 15:46:07 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2007-12-12 15:46:07 +0000 |
commit | a584094f7270a298b29f7a8106f258a14c9e1066 (patch) | |
tree | ac5e3734b7f4b6ed21217f48420767ba287e69c0 | |
parent | added printing of sync information to stdout (diff) |
added newline
-rw-r--r-- | syncSocket.cpp | 2 |
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() //{ |