summaryrefslogtreecommitdiff
path: root/lib/httpserver/HTTPServer.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2009-01-05 00:49:34 +0000
committerChris Wilson <chris+github@qwirx.com>2009-01-05 00:49:34 +0000
commit5ec745e22e1693e5704ff8579f4b66dbea837447 (patch)
tree72396110c2b2b34b4e892f11e342e2054edfcc2d /lib/httpserver/HTTPServer.h
parentfd7e746850372750efd42690aac25cbf32d9b5b4 (diff)
Create HTTP responses with the stream that they will be sent to, for 100
Continue support.
Diffstat (limited to 'lib/httpserver/HTTPServer.h')
-rw-r--r--lib/httpserver/HTTPServer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/httpserver/HTTPServer.h b/lib/httpserver/HTTPServer.h
index 9a86b04f..8009438d 100644
--- a/lib/httpserver/HTTPServer.h
+++ b/lib/httpserver/HTTPServer.h
@@ -46,7 +46,7 @@ public:
// Created: 26/3/04
//
// --------------------------------------------------------------------------
- virtual void Handle(const HTTPRequest &rRequest, HTTPResponse &rResponse) = 0;
+ virtual void Handle(HTTPRequest &rRequest, HTTPResponse &rResponse) = 0;
// For notifications to derived classes
virtual void HTTPConnectionOpening();