| 120 | |
| 121 | |
| 122 | SocketImpl(Socket& socket,const SocketManager& manager,Socket::Type type) : |
| 123 | _pSocket(&socket), |
| 124 | type(type), |
| 125 | _initialized(false), |
| 126 | _connecting(false), |
| 127 | _connected(false), |
| 128 | _pManagedSocket(NULL), |
| 129 | manager(manager), |
| 130 | _writing(false), |
| 131 | SocketFile(NET_INVALID_SOCKET) { |
| 132 | } |
| 133 | |
| 134 | // initialized and connected socket |
| 135 | SocketImpl(Socket& socket,SocketFile& file,const SocketManager& manager) : |
nothing calls this directly
no outgoing calls
no test coverage detected