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/http_file.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/http_file.h')
| -rw-r--r-- | lib/network/http_file.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/network/http_file.h b/lib/network/http_file.h index 88bffc60..109dc07e 100644 --- a/lib/network/http_file.h +++ b/lib/network/http_file.h @@ -20,18 +20,18 @@ class eHTTPFilePathResolver: public eHTTPPathResolver { struct eHTTPFilePath { - eString path; - eString root; + std::string path; + std::string root; int authorized; // must be authorized (1 means read, 2 write) - eHTTPFilePath(eString path, eString root, int authorized): path(path), root(root), authorized(authorized) + eHTTPFilePath(std::string path, std::string root, int authorized): path(path), root(root), authorized(authorized) { } }; ePtrList<eHTTPFilePath> translate; public: eHTTPFilePathResolver(); - eHTTPDataSource *getDataSource(eString request, eString path, eHTTPConnection *conn); - void addTranslation(eString path, eString root, int auth); + eHTTPDataSource *getDataSource(std::string request, std::string path, eHTTPConnection *conn); + void addTranslation(std::string path, std::string root, int auth); }; #endif |
