summaryrefslogtreecommitdiff
path: root/reqp.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:46 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:46 +0200
commit07706f56cd421bf8b101a5c0fe44674d36e161a0 (patch)
treebec8b45765788370fbd148d68e05d8b437e60670 /reqp.h
parent56187184e11b085b82584d3b088c62f427aae83c (diff)
tagging ychat-0.5.1ychat-0.5.1
Diffstat (limited to 'reqp.h')
-rwxr-xr-xreqp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/reqp.h b/reqp.h
index 4e68a25..399c751 100755
--- a/reqp.h
+++ b/reqp.h
@@ -24,7 +24,7 @@ private:
HTTP_CACHEC,
HTTP_CONNEC,
HTTP_COTYPE;
-
+
// returns the request url from thr client's http request header
// until the first "?" and stores all request parameter values
// ( behind "?" ) into map_params.
@@ -39,7 +39,9 @@ public:
// public methods.
explicit reqp( ); // simple constructor.
virtual string parse( thrd* p_thrd, string s_req, map_string &map_params );
- virtual string url_decode (string );
+ virtual string url_decode ( string );
+ virtual string get_content_type( string );
+ virtual void parse_headers( string s_req, map_string &map_params );
};
#endif