| 36 | } |
| 37 | |
| 38 | std::string TestHttpServer::GetHeader(const std::string &key) { |
| 39 | if (this->headers.find(key) != this->headers.end()) |
| 40 | return this->headers[key]; |
| 41 | return ""; |
| 42 | } |
| 43 | |
| 44 | int TestHttpServer::callback(void *cls, MHD_Connection *connection, |
| 45 | const char *url, const char *method, |
no test coverage detected