| 17 | // |
| 18 | |
| 19 | TCPSocketFactory::TCPSocketFactory(IEventQueue *events, SocketMultiplexer *socketMultiplexer) |
| 20 | : m_events(events), |
| 21 | m_socketMultiplexer(socketMultiplexer) |
| 22 | { |
| 23 | // do nothing |
| 24 | } |
| 25 | |
| 26 | IDataSocket *TCPSocketFactory::create(IArchNetwork::AddressFamily family, SecurityLevel securityLevel) const |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected