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, 1 insertions, 2 deletions
diff --git a/server/src/connection.h b/server/src/connection.h
index 153e865..ec18d00 100644
--- a/server/src/connection.h
+++ b/server/src/connection.h
@@ -35,8 +35,7 @@
class Connection {
public:
virtual bool handle(const char *data, size_t size) = 0;
- virtual std::string getResponse() = 0;
- virtual headers_t getHeaders() = 0;
+ virtual void getReply(Httpd::Reply &reply) = 0;
};
#endif/*__PRACRO_CONNECTION_H__*/