1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-08-07 12:59:45 +00:00

query_string() should return the raw GET string.

This commit is contained in:
King_DuckZ 2017-04-05 20:07:42 +01:00
parent 3fb4df637e
commit cd72d374c5
3 changed files with 10 additions and 4 deletions

View file

@ -27,7 +27,7 @@ namespace tawashi {
boost::optional<VersionInfo> gateway_interface() const a_pure;
const std::string& path_info() const;
const std::string& path_translated() const;
KeyValueList query_string() const a_pure;
const std::string& query_string() const;
const std::string& remote_addr() const;
const std::string& remote_host() const;
const std::string& remote_ident() const;
@ -39,6 +39,8 @@ namespace tawashi {
boost::optional<VersionInfo> server_protocol() const a_pure;
const std::string& server_software() const;
KeyValueList query_string_split() const a_pure;
std::ostream& print_all (std::ostream& parStream, const char* parNewline) const;
private: