diff options
author | pixel <pixel> | 2007-07-23 14:05:42 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-07-23 14:05:42 +0000 |
commit | e2d934b54dbcc35c134d3407ebefec50e525f6fe (patch) | |
tree | c061e8fe9f25067638d7317813bbc42b432b9f19 /include/HttpServ.h | |
parent | fc0f17c6e371dd13df72cea2e8ad67b062c630d9 (diff) |
Adding support for the digest auth method.
Diffstat (limited to 'include/HttpServ.h')
-rw-r--r-- | include/HttpServ.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/HttpServ.h b/include/HttpServ.h index bcff606..8861d04 100644 --- a/include/HttpServ.h +++ b/include/HttpServ.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: HttpServ.h,v 1.24 2007-06-17 15:21:51 pixel Exp $ */ +/* $Id: HttpServ.h,v 1.25 2007-07-23 14:05:42 pixel Exp $ */ #ifndef __HTTPSERV_H__ #define __HTTPSERV_H__ @@ -51,6 +51,7 @@ class HttpResponse : public Base { String mime_type; String location; + String domain; String server_name; return_code_t return_code; time_t last_modified; @@ -66,7 +67,7 @@ class HttpResponse : public Base { class HttpRequest : public Base { public: Variables * vars, * headers; - String uri, login, password; + String method, uri, login, password; Uint32 lip, dip; int lport, dport; }; |