diff options
| author | Pixel <Pixel> | 2001-10-30 17:38:54 +0000 | 
|---|---|---|
| committer | Pixel <Pixel> | 2001-10-30 17:38:54 +0000 | 
| commit | 57633137f749b0098eaf703f49ed00c96128966d (patch) | |
| tree | f7e55be48d4724d44e5ed2362cf836162e866d05 /include/HttpServ.h | |
| parent | e5057005049b11af44cb804118f95370f03ab32c (diff) | |
Huge work on Tasking System.
Diffstat (limited to 'include/HttpServ.h')
| -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 dc89104..6bd2769 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 &, Handle &); -    void ParseVars(Handle &, int); -    void ShowError(Handle &); -    void SendHeads(Handle &, const String &); -    void SendRedirect(Handle &); +    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;  | 
