| 82 | HttpcServer::~HttpcServer() {} |
| 83 | |
| 84 | void HttpcServer::initialize( |
| 85 | int port, |
| 86 | bool nonblock) { |
| 87 | TcpSocket::initialize(_bindIPAddress, port, nonblock); |
| 88 | } |
| 89 | |
| 90 | const std::string &HttpcServer::getProtocolVersionString() const { |
| 91 | if (getProtocolString() == "RTSP") { |
nothing calls this directly
no outgoing calls
no test coverage detected