summaryrefslogtreecommitdiff
path: root/server/src/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/connection.h')
-rw-r--r--server/src/connection.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/connection.h b/server/src/connection.h
index b7d17f4..098c735 100644
--- a/server/src/connection.h
+++ b/server/src/connection.h
@@ -36,7 +36,8 @@ class Connection {
public:
virtual ~Connection() {}
- virtual bool handle(const char *data, size_t size) = 0;
+ virtual bool data(const char *data, size_t size) = 0;
+ virtual bool handle() = 0;
virtual void getReply(Httpd::Reply &reply) = 0;
};