summaryrefslogtreecommitdiff
path: root/src/modules/httpd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-11 12:55:49 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-11 12:55:49 +0000
commit3f80008ba387b1e1e9e360f047fd6d1684c85d4c (patch)
treee170ba73de8a930e90e2fea430860ad68f90ee8e /src/modules/httpd.h
parentecec1067b45477c1a6f3908b4fc6ac0faa6cdbb1 (diff)
Event class for m_httpd.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4325 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/httpd.h')
-rw-r--r--src/modules/httpd.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/modules/httpd.h b/src/modules/httpd.h
new file mode 100644
index 000000000..9be23f9f0
--- /dev/null
+++ b/src/modules/httpd.h
@@ -0,0 +1,42 @@
+#include "base.h"
+
+#ifndef __HTTPD_H__
+#define __HTTPD_H__
+
+HTTPRequest : public classbase
+{
+ protected:
+
+ std::string type;
+ std::string document;
+ std::string ipaddr;
+
+ public:
+
+ void* opaque;
+
+ HTTPRequest(const std::string &request_type, const std::string &uri, void* opaque, const std::string &ip)
+ : type(request_type), document(uri), ipaddr(ip)
+ {
+ }
+
+ std::string& GetType()
+ {
+ return type;
+ }
+
+ std::string& GetURI()
+ {
+ return document;
+ }
+
+ std::string& GetIP()
+ {
+ return ipaddr;
+ }
+}
+
+#endif
+
+//httpr(request_type,uri,headers,this,this->GetIP());
+