summaryrefslogtreecommitdiffstats
path: root/src/WebAdmin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/WebAdmin.h')
-rw-r--r--src/WebAdmin.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/WebAdmin.h b/src/WebAdmin.h
index 1e1a9bfa9..4dbcc57a6 100644
--- a/src/WebAdmin.h
+++ b/src/WebAdmin.h
@@ -50,9 +50,18 @@ struct HTTPRequest
typedef std::map< std::string, std::string > StringStringMap;
typedef std::map< std::string, HTTPFormData > FormDataMap;
+ /** The entire URL presented to the HTTP server. */
+ AString URL;
+
+ /** HTTP method used for the request ("GET", "POST" etc.) */
AString Method;
+
+ /** The Path part of the request's URL (excluding GET params). */
AString Path;
+
+ /** Name of the logged-in user. Empty if not logged in. */
AString Username;
+
// tolua_end
/** Parameters given in the URL, after the questionmark */