diff options
Diffstat (limited to 'src/connection.cpp')
-rw-r--r-- | src/connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 8edad9590..3c743d233 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -304,7 +304,7 @@ bool connection::RecvPacket(char *message, char* host, int &prt, long &theirkey) //int recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen); if (recvfrom(fd,&p,sizeof(p),0,(sockaddr*)&host_address,&host_address_size)<0) { - if (this->buffer.size()) + if (this->buffer.size() != -1) { log(DEBUG,"Fetching a buffered packet"); @@ -348,7 +348,7 @@ bool connection::RecvPacket(char *message, char* host, int &prt, long &theirkey) prt = ntohs(host_address.sin_port); // the port we received it on SendACK(host,prt,p.id); - if (this->buffer.size()) + if (this->buffer.size() != -1) { log(DEBUG,"Fetching a buffered packet"); packet_buf pb; |