libt2n: (gerd) add protocol version config, add server callbacks (not fully working...
[libt2n] / src / connection.cpp
index 0b445ef..361cfda 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <string>
 #include <sstream>
+#include <iostream>
 
 #include "connection.hxx"
 
@@ -31,18 +32,23 @@ connection::packet_size_indicator connection::bytes_available()
 
     // no size information -> no packet
     if (buffer.size() < sizeof(unsigned int))
-        return false;
+        return 0;
 
     packet_size_indicator psize=*((packet_size_indicator*)(buffer.data()));
 
     // enough data for one packet in buffer?
     if (buffer.size() < sizeof(unsigned int)+psize)
-        return false;
+        return 0;
 
     // ok, full packet there
-    return true;
+    return psize;
 }
 
+/** @brief read a complete data packet from the buffer. The packet is removed from the
+            connection buffer.
+    @param[out] data the data package
+    @retval true if packet found
+*/
 bool connection::get_packet(std::string& data)
 {
     packet_size_indicator psize;
@@ -57,16 +63,15 @@ bool connection::get_packet(std::string& data)
         return false;
 }
 
+/// send a blob to the peer
 void connection::write(const std::string& data)
 {
     // prepend packet size to data
     packet_size_indicator psize=data.size();
     std::string send_data(data);
-    send_data.insert(0,(char*)psize,sizeof(packet_size_indicator));
+    send_data.insert(0,(char*)&psize,sizeof(packet_size_indicator));
 
     real_write(send_data);
 }
 
-
-
 }