diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-02-11 17:15:57 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-02-11 17:15:57 +0100 |
commit | 3b83968416bcc5710c394892bb2ac1cc79f0298a (patch) | |
tree | 2f50b10320ce670b81af61ddd5188c619865272e /include | |
parent | 1e8e379dce7a3311eff7161269593f1655f577eb (diff) |
Remove unused parameters from HTTPRequest constructor
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/httpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/httpd.h b/include/modules/httpd.h index 60032cb16..b4b88bed5 100644 --- a/include/modules/httpd.h +++ b/include/modules/httpd.h @@ -135,7 +135,7 @@ class HTTPRequest * @param ip The IP address making the web request. * @param pdata The post data (content after headers) received with the request, up to Content-Length in size */ - HTTPRequest(Module* me, const std::string &eventid, const std::string &request_type, const std::string &uri, + HTTPRequest(const std::string& request_type, const std::string& uri, HTTPHeaders* hdr, HttpServerSocket* socket, const std::string &ip, const std::string &pdata) : type(request_type), document(uri), ipaddr(ip), postdata(pdata), headers(hdr), sock(socket) { |