| 54 | } |
| 55 | |
| 56 | void http_server_request::connect() |
| 57 | { |
| 58 | state = HTTPS_HEADERS; |
| 59 | read_loop(); |
| 60 | } |
| 61 | |
| 62 | const std::string http_server_request::get_header(const std::string& header_name) const { |
| 63 | auto hdrs = request_headers.find(lowercase(header_name)); |
nothing calls this directly
no outgoing calls
no test coverage detected