summaryrefslogtreecommitdiff
path: root/reqp.h
diff options
context:
space:
mode:
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