| 40 | |
| 41 | private: |
| 42 | void onConnection(const TcpConnectionPtr& conn) |
| 43 | { |
| 44 | LOG_TRACE << conn->peerAddress().toIpPort() << " -> " |
| 45 | << conn->localAddress().toIpPort() << " is " |
| 46 | << (conn->connected() ? "UP" : "DOWN"); |
| 47 | conn->setTcpNoDelay(true); |
| 48 | } |
| 49 | |
| 50 | void onMessage(const TcpConnectionPtr& conn, Buffer* buf, Timestamp) |
| 51 | { |
nothing calls this directly
no test coverage detected