diff options
Diffstat (limited to 'response.cpp')
-rw-r--r-- | response.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/response.cpp b/response.cpp index 9ee1977..4e66dd3 100644 --- a/response.cpp +++ b/response.cpp @@ -225,6 +225,7 @@ std::unordered_map<std::string, std::function<void(const std::string&, response_ { "server", [](const std::string& value, response_type& res){res.set(http::field::server, value);} }, // Server name/version string { "set_cookie", [](const std::string& value, response_type& res){res.set(http::field::set_cookie, value);} }, { "status", [](const std::string& value, response_type& res){res.result(unsigned(stoul(value)));} }, // HTTP Status, e.g. "200" (OK) + { "www_authenticate", [](const std::string& value, response_type& res){res.set(http::field::www_authenticate, value);} }, }; void SetResponseHeader(const std::string& key, const std::string& value, response_type& res) |