summaryrefslogtreecommitdiff
path: root/include/HttpServ.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/HttpServ.h')
-rw-r--r--include/HttpServ.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/HttpServ.h b/include/HttpServ.h
index 71dc4eb..d4ef60c 100644
--- a/include/HttpServ.h
+++ b/include/HttpServ.h
@@ -4,9 +4,9 @@
#include "Socket.h"
#include "String.h"
-#include "Exceptions.h"
#include "Variables.h"
#include "Action.h"
+#include "Exceptions.h"
/*
* La classe HttpServ. Le constructueur (int, const String &) indique le port
@@ -23,7 +23,7 @@ class HttpServ : public Base {
void MainLoop(Action *);
private:
String GetMime(const String &);
- void ProcessRequest(Action *);
+ void ProcessRequest(Action *, Socket);
bool ParseUri(String &, String &, Socket &);
void ParseVars(Socket &, int);
void ShowError(Socket &);