| 180 | ///////////////////////////////////////////////////////////SocketBase |
| 181 | |
| 182 | SocketBase::SocketBase() : _family(AF_INET), _handle(-1) {} |
| 183 | |
| 184 | SocketBase::SocketBase(int family, int handle) : _family(family), _handle(handle) { |
| 185 | if (handle == -1) { |
nothing calls this directly
no outgoing calls
no test coverage detected