diff options
author | pixel <pixel> | 2007-06-11 11:29:06 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-06-11 11:29:06 +0000 |
commit | 9db92074f0a05b2b2e34f960b12c1fb64906131b (patch) | |
tree | 5f2854a18011b488b7ed068c4f86d82d8c3e2d03 | |
parent | d76587634a791b876820ce56041e01a80cd7e9b6 (diff) |
Adding login and password fields.
-rw-r--r-- | include/HttpServ.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/HttpServ.h b/include/HttpServ.h index 69dab37..53a6d89 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.22 2007-05-30 11:57:08 pixel Exp $ */ +/* $Id: HttpServ.h,v 1.23 2007-06-11 11:29:06 pixel Exp $ */ #ifndef __HTTPSERV_H__ #define __HTTPSERV_H__ @@ -66,7 +66,7 @@ class HttpResponse : public Base { class HttpRequest : public Base { public: Variables * vars, * headers; - String uri; + String uri, login, password; }; class Action; |