summaryrefslogtreecommitdiffstats
path: root/src/HTTPServer/HTTPServerConnection.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/HTTPServer/HTTPServerConnection.h (renamed from src/HTTPServer/HTTPConnection.h)8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/HTTPServer/HTTPConnection.h b/src/HTTPServer/HTTPServerConnection.h
index 414075411..d63cc7395 100644
--- a/src/HTTPServer/HTTPConnection.h
+++ b/src/HTTPServer/HTTPServerConnection.h
@@ -24,7 +24,7 @@ class cHTTPRequest;
-class cHTTPConnection :
+class cHTTPServerConnection :
public cTCPLink::cCallbacks
{
public:
@@ -38,8 +38,8 @@ public:
wcsInvalid, ///< The request was malformed, the connection is closing
} ;
- cHTTPConnection(cHTTPServer & a_HTTPServer);
- virtual ~cHTTPConnection();
+ cHTTPServerConnection(cHTTPServer & a_HTTPServer);
+ virtual ~cHTTPServerConnection();
/** Sends HTTP status code together with a_Reason (used for HTTP errors).
Sends the a_Reason as the body as well, so that browsers display it. */
@@ -116,7 +116,7 @@ protected:
}
} ;
-typedef std::vector<cHTTPConnection *> cHTTPConnections;
+typedef std::vector<cHTTPServerConnection *> cHTTPServerConnections;