summaryrefslogtreecommitdiff
path: root/include/tgbot/net/HttpServer.h
diff options
context:
space:
mode:
authorJellyBrick <shlee1503@naver.com>2018-06-08 16:41:28 +0900
committerJellyBrick <shlee1503@naver.com>2018-06-08 16:41:28 +0900
commit093833a785cb25faf4afe3b5652c7598d778866f (patch)
treee91e25520fbefd6124b8950d7d1c2617fa20b6a1 /include/tgbot/net/HttpServer.h
parent1aee6428aef1fe5179e149477bf48f73f32d3ada (diff)
Resolve Travis-CI test
Diffstat (limited to 'include/tgbot/net/HttpServer.h')
-rw-r--r--include/tgbot/net/HttpServer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tgbot/net/HttpServer.h b/include/tgbot/net/HttpServer.h
index e760e29..34cd9c7 100644
--- a/include/tgbot/net/HttpServer.h
+++ b/include/tgbot/net/HttpServer.h
@@ -43,7 +43,7 @@ protected:
class Connection;
public:
- typedef std::function<std::string (const std::string&, const std::map<std::string, std::string>)> ServerHandler;
+ typedef std::function<std::string (const std::string&, const std::unordered_map<std::string, std::string>)> ServerHandler;
HttpServer(std::shared_ptr<boost::asio::basic_socket_acceptor<Protocol>> acceptor, const ServerHandler& handler) : _acceptor(acceptor), _handler(handler) {
}
@@ -80,7 +80,7 @@ protected:
void start() {
data.reserve(10240);
socket->async_receive(data, [this]() {
- std::map<std::string, std::string> headers;
+ std::unordered_map<std::string, std::string> headers;
std::string body = HttpParser::getInstance().parseResponse(data, headers);
socket->async_send(_handler(body, headers));
});