1
0

Fixed WebAdmin's request parameters.

Also added doxycomments on what they really contain.
This commit is contained in:
madmaxoft
2013-10-13 20:29:57 +02:00
parent e62cac07c0
commit efb7d4fd3e
4 changed files with 41 additions and 7 deletions

View File

@@ -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