| 75 | } |
| 76 | |
| 77 | bool HttpServer::RegisterHttpHandler(const std::string& path, |
| 78 | HttpHandler* handler) { |
| 79 | return m_impl->RegisterHttpHandler(path, handler); |
| 80 | } |
| 81 | |
| 82 | bool HttpServer::Bind(const SocketAddress& address, SocketAddress* real_address) { |
| 83 | return m_impl->Bind(address, real_address); |
nothing calls this directly
no outgoing calls
no test coverage detected