| 35 | friend class Socket; |
| 36 | public: |
| 37 | SocketFile(const SocketFile& other) : Object(), NullableObject(), _sockfd(other._sockfd) {} |
| 38 | virtual ~SocketFile() { |
| 39 | if (_sockfd != NET_INVALID_SOCKET) |
| 40 | NET_CLOSESOCKET(_sockfd); |
nothing calls this directly
no outgoing calls
no test coverage detected