summaryrefslogtreecommitdiff
path: root/include/HttpServ.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-10-29 15:44:12 +0000
committerPixel <Pixel>2001-10-29 15:44:12 +0000
commit2e5bed84841f33ff28dd95b77b555720c875a286 (patch)
treede6cbcbf5fa65e90e1888d52a9426373a1638c61 /include/HttpServ.h
parent0a6190d0269392e875a479df01b152d47ea4143c (diff)
Beginning task manager
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 &);