From de27f66b59439e6d6db01f30dc5eee9807028db4 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Tue, 21 Apr 2015 10:54:43 +0200 Subject: Added URL member to the HTTPRequest API class. --- src/WebAdmin.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/WebAdmin.h') 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 */ -- cgit v1.2.3