diff options
Diffstat (limited to 'server/src/server.cc')
-rw-r--r-- | server/src/server.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/server.cc b/server/src/server.cc index e4d6474..2d2d4c9 100644 --- a/server/src/server.cc +++ b/server/src/server.cc @@ -73,7 +73,7 @@ public: { if(ptr) { Connection *connection = (Connection *)ptr; - connection->handle(data, data_size); + connection->data(data, data_size); } return true; } @@ -84,7 +84,7 @@ public: Connection *connection = (Connection *)ptr; // Flush and do commit/discards - connection->handle(NULL, 0); + if(!connection->handle()) return false; connection->getReply(reply); } |