diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/HttpServ.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/HttpServ.h b/include/HttpServ.h index d4ef60c..dc89104 100644 --- a/include/HttpServ.h +++ b/include/HttpServ.h @@ -24,11 +24,11 @@ class HttpServ : public Base { private: String GetMime(const String &); void ProcessRequest(Action *, Socket); - bool ParseUri(String &, String &, Socket &); - void ParseVars(Socket &, int); - void ShowError(Socket &); - void SendHeads(Socket &, const String &); - void SendRedirect(Socket &); + bool ParseUri(String &, String &, Handle &); + void ParseVars(Handle &, int); + void ShowError(Handle &); + void SendHeads(Handle &, const String &); + void SendRedirect(Handle &); String name; Socket Listener; Variables * Vars; |