| 4930 | } |
| 4931 | |
| 4932 | inline void Response::set_content(const char *s, size_t n, |
| 4933 | const std::string &content_type) { |
| 4934 | body.assign(s, n); |
| 4935 | |
| 4936 | auto rng = headers.equal_range("Content-Type"); |
| 4937 | headers.erase(rng.first, rng.second); |
| 4938 | set_header("Content-Type", content_type); |
| 4939 | } |
| 4940 | |
| 4941 | inline void Response::set_content(const std::string &s, |
| 4942 | const std::string &content_type) { |