| 194 | } |
| 195 | |
| 196 | NetworkThread::NetworkThread(int port) { |
| 197 | this->port_ = port; |
| 198 | thread_ = new std::thread([this] { doWork(); }); |
| 199 | this->epf_ = new EndPointFactory(this); |
| 200 | } |
| 201 | |
| 202 | void NetworkThread::doWork() { |
| 203 |
nothing calls this directly
no outgoing calls
no test coverage detected