diff options
author | deva <deva> | 2011-02-07 11:16:27 +0000 |
---|---|---|
committer | deva <deva> | 2011-02-07 11:16:27 +0000 |
commit | ae91057323802dbfe5797cab6fd923149503b213 (patch) | |
tree | a0ef887fda6cd3f6edf6e8c1ed9fbc212a24e158 /server/src/connection.h | |
parent | 4ea34b413bd21c0e8ec4c3b93840bfe928d3c9c4 (diff) |
Made isreadonly propagate to session file and back to live object.
Diffstat (limited to 'server/src/connection.h')
-rw-r--r-- | server/src/connection.h | 3 |
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__*/ |