| 269 | } |
| 270 | |
| 271 | void HTTPMsg::add_header(const char *name, const std::string & value, bool replace) { |
| 272 | add_header(name, value.c_str(), replace); |
| 273 | } |
| 274 | |
| 275 | void HTTPMsg::add_header(const char *name, const char *value, bool replace) { |
| 276 | std::size_t count = headers.count(name); |
no outgoing calls