diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2004-10-01 13:21:35 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2004-10-01 13:21:35 +0000 |
| commit | ddc3964ed95d01e72229dc9af968a327cd84e56c (patch) | |
| tree | 93e6694c639db3d188f5b2868f6b2b2951d21d60 /lib/network/httpd.h | |
| parent | 1aeefd997cc362c3b37c1587c5f08891b35c3a75 (diff) | |
| download | enigma2-ddc3964ed95d01e72229dc9af968a327cd84e56c.tar.gz enigma2-ddc3964ed95d01e72229dc9af968a327cd84e56c.zip | |
- add python, missing gui
- remove console (needs to be rewritten anyway)
- eString -> std::string
Diffstat (limited to 'lib/network/httpd.h')
| -rw-r--r-- | lib/network/httpd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/network/httpd.h b/lib/network/httpd.h index 791d49c8..61fe2c75 100644 --- a/lib/network/httpd.h +++ b/lib/network/httpd.h @@ -6,7 +6,7 @@ #include <lib/base/eptrlist.h> #include <lib/base/ebase.h> -#include <lib/base/estring.h> +#include <string> #include <lib/base/eerror.h> #include <lib/network/socket.h> #include <lib/network/serversocket.h> @@ -19,7 +19,7 @@ class eHTTPPathResolver { public: virtual ~eHTTPPathResolver() {}; - virtual eHTTPDataSource *getDataSource(eString request, eString path, eHTTPConnection *conn)=0; + virtual eHTTPDataSource *getDataSource(std::string request, std::string path, eHTTPConnection *conn)=0; }; class eHTTPDataSource @@ -47,7 +47,7 @@ class eHTTPConnection: public eSocket { void doError(int error); - int getLine(eString &line); + int getLine(std::string &line); int processLocalState(); int processRemoteState(); @@ -93,13 +93,13 @@ public: ~eHTTPConnection(); // stateRequest - eString request, requestpath, httpversion; + std::string request, requestpath, httpversion; int is09; // stateResponse int code; - eString code_descr; + std::string code_descr; std::map<std::string,std::string> remote_header, local_header; |
