diff options
author | madmaxoft <github@xoft.cz> | 2013-10-13 20:29:57 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-13 20:29:57 +0200 |
commit | efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc (patch) | |
tree | 9a39bde0b280721461c7597631182a08d7921c86 /source/WebAdmin.h | |
parent | Merge branch 'metadata' of git://github.com/tigerw/MCServer into tigerw-metadata. (diff) | |
download | cuberite-efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc.tar cuberite-efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc.tar.gz cuberite-efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc.tar.bz2 cuberite-efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc.tar.lz cuberite-efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc.tar.xz cuberite-efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc.tar.zst cuberite-efb7d4fd3e9d20facf6a5b3d41bee8ca3d894bbc.zip |
Diffstat (limited to '')
-rw-r--r-- | source/WebAdmin.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/WebAdmin.h b/source/WebAdmin.h index 16b5dd4dc..72c77ddfb 100644 --- a/source/WebAdmin.h +++ b/source/WebAdmin.h @@ -56,8 +56,14 @@ struct HTTPRequest AString Path; AString Username; // tolua_end + + /// Parameters given in the URL, after the questionmark StringStringMap Params; // >> EXPORTED IN MANUALBINDINGS << + + /// Parameters posted as a part of a form - either in the URL (GET method) or in the body (POST method) StringStringMap PostParams; // >> EXPORTED IN MANUALBINDINGS << + + /// Same as PostParams FormDataMap FormData; // >> EXPORTED IN MANUALBINDINGS << } ; // tolua_export |