| 80 | } |
| 81 | |
| 82 | CClientTCPSocket::~CClientTCPSocket() |
| 83 | { |
| 84 | if (m_client) { |
| 85 | m_client->SetSocket( NULL ); |
| 86 | } |
| 87 | m_client = NULL; |
| 88 | |
| 89 | if (theApp->listensocket && !theApp->listensocket->OnShutdown()) { |
| 90 | theApp->listensocket->RemoveSocket(this); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | bool CClientTCPSocket::InitNetworkData() |
| 95 | { |
nothing calls this directly
no test coverage detected