| 33 | #include <sstream> |
| 34 | |
| 35 | HttpServer::HttpServer( |
| 36 | base::XMLSupport &xml, |
| 37 | StreamManager &streamManager, |
| 38 | const std::string &bindIPAddress, |
| 39 | Properties &properties) : |
| 40 | ThreadBase("HttpServer"), |
| 41 | HttpcServer(20, "HTTP", streamManager, bindIPAddress), |
| 42 | _properties(properties), |
| 43 | _xml(xml) {} |
| 44 | |
| 45 | HttpServer::~HttpServer() { |
| 46 | cancelThread(); |
nothing calls this directly
no outgoing calls
no test coverage detected