aboutsummaryrefslogtreecommitdiff
path: root/src/DirectConnection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DirectConnection.cpp')
-rw-r--r--src/DirectConnection.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/DirectConnection.cpp b/src/DirectConnection.cpp
index 8243b50..b548a02 100644
--- a/src/DirectConnection.cpp
+++ b/src/DirectConnection.cpp
@@ -185,10 +185,16 @@ namespace sibs
bool DirectConnections::send(const std::shared_ptr<DirectConnectionPeer> peer, std::shared_ptr<Message> data, PubSubSendDataCallback sendDataCallbackFunc)
{
if(data->getDataSize() == 0)
+ {
+ Log::warn("No data sent because you are trying to send 0 bytes");
return true;
+ }
if(data->getDataSize() > 819200) // 800kb
+ {
+ Log::error("Data not sent, data was over 800kb");
return false;
+ }
Log::debug("DirectConnections::send: sending %d bytes to %s:%d", data->getRawSize(), peer->address.getAddress().c_str(), peer->address.getPort());
// TODO: Replace this with light-weight threads (fibers)?