summaryrefslogtreecommitdiff
path: root/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'server.h')
-rw-r--r--server.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/server.h b/server.h
index 8b0f637..992e792 100644
--- a/server.h
+++ b/server.h
@@ -24,10 +24,11 @@ class Server {
void handle_connect(Connection::p connection);
void async_read(Connection::p connection);
- void handle_message(const boost::system::error_code& error, size_t bytes_transferred, Connection::p connection, uint8_t *_type);
+ void handle_type(const boost::system::error_code& error, size_t bytes_transferred, Connection::p connection, uint8_t *_type);
void handle_pos(Connection::p c);
void handle_chunk(Connection::p c);
+ void handle_message(Connection::p c);
};
#endif