Fix SSL client issue.
This commit is contained in:
@@ -7,7 +7,6 @@
|
||||
// Example:
|
||||
// /inventory-check.cgi?item=12731&color=blue&size=large
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
@@ -27,9 +26,6 @@ class UrlQuery {
|
||||
// The query string should be key value pairs separated by '&'.
|
||||
explicit UrlQuery(const std::string& str);
|
||||
|
||||
// Construct from key-value pairs.
|
||||
explicit UrlQuery(const std::map<std::string, std::string>& map);
|
||||
|
||||
void Add(const std::string& key, const std::string& value);
|
||||
|
||||
void Add(std::string&& key, std::string&& value);
|
||||
|
||||
Reference in New Issue
Block a user