summaryrefslogtreecommitdiff
path: root/include/HttpServ.h
diff options
context:
space:
mode:
authorpixel <pixel>2007-06-17 15:21:50 +0000
committerpixel <pixel>2007-06-17 15:21:50 +0000
commit0ccb4c76a3b5ad65fe1b3ae2dee5095483de8d8d (patch)
treee4386fbeb08df4aed40f5b00f914203f35162df9 /include/HttpServ.h
parentaf928d0663646b8cfb1bd87f160b5725eecb7534 (diff)
Adding source and dest IP/port.
Diffstat (limited to 'include/HttpServ.h')
-rw-r--r--include/HttpServ.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/HttpServ.h b/include/HttpServ.h
index 53a6d89..bcff606 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.23 2007-06-11 11:29:06 pixel Exp $ */
+/* $Id: HttpServ.h,v 1.24 2007-06-17 15:21:51 pixel Exp $ */
#ifndef __HTTPSERV_H__
#define __HTTPSERV_H__
@@ -67,6 +67,8 @@ class HttpRequest : public Base {
public:
Variables * vars, * headers;
String uri, login, password;
+ Uint32 lip, dip;
+ int lport, dport;
};
class Action;