| 1389 | |
| 1390 | |
| 1391 | Connection::Connection( |
| 1392 | const network::Socket& s, |
| 1393 | const network::Address& _localAddress, |
| 1394 | const network::Address& _peerAddress) |
| 1395 | : localAddress(_localAddress), peerAddress(_peerAddress), |
| 1396 | data(std::make_shared<Connection::Data>(s)) {} |
| 1397 | |
| 1398 | |
| 1399 | Future<Response> Connection::send( |
nothing calls this directly
no outgoing calls
no test coverage detected