aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/lluri.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/lluri.h')
-rw-r--r--linden/indra/llcommon/lluri.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/linden/indra/llcommon/lluri.h b/linden/indra/llcommon/lluri.h
index 77de595..d1499b8 100644
--- a/linden/indra/llcommon/lluri.h
+++ b/linden/indra/llcommon/lluri.h
@@ -90,9 +90,11 @@ public:
90 std::string query() const; // ex.: "x=34", section after "?" 90 std::string query() const; // ex.: "x=34", section after "?"
91 LLSD queryMap() const; // above decoded into a map 91 LLSD queryMap() const; // above decoded into a map
92 static LLSD queryMap(std::string escaped_query_string); 92 static LLSD queryMap(std::string escaped_query_string);
93 static std::string mapToQueryString(const LLSD& queryMap);
93 94
94 // Escaping Utilities 95 // Escaping Utilities
95 // Escape a string by urlencoding all the characters that aren't in the allowed string. 96 // Escape a string by urlencoding all the characters that aren't in the allowed string.
97 static std::string escape(const std::string& str);
96 static std::string escape(const std::string& str, const std::string & allowed); 98 static std::string escape(const std::string& str, const std::string & allowed);
97 static std::string unescape(const std::string& str); 99 static std::string unescape(const std::string& str);
98 100