summaryrefslogtreecommitdiff
path: root/server/src/client_connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/client_connection.h')
-rw-r--r--server/src/client_connection.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/server/src/client_connection.h b/server/src/client_connection.h
index a509221..b811b7f 100644
--- a/server/src/client_connection.h
+++ b/server/src/client_connection.h
@@ -40,7 +40,8 @@ class Session;
class ClientConnection : public Connection {
public:
- ClientConnection(Environment &e, headers_t &headers);
+ ClientConnection(Environment &e, headers_t &headers,
+ headers_t args, std::string uri);
~ClientConnection();
bool handle(const char *data, size_t size);
@@ -67,6 +68,8 @@ private:
bool docommit;
bool dodiscard;
bool donocommit;
+
+ Request request;
};
#endif/*__PRACRO_CLIENT_CONNECTION_H__*/