| 1753 | |
| 1754 | |
| 1755 | void CUpDownClient::SetSocket(CClientTCPSocket* socket) |
| 1756 | { |
| 1757 | #ifdef __DEBUG__ |
| 1758 | if (m_socket == NULL && socket != NULL) { |
| 1759 | theStats::SocketAssignedToClient(); |
| 1760 | } else if (m_socket != NULL && socket == NULL) { |
| 1761 | theStats::SocketUnassignedFromClient(); |
| 1762 | } |
| 1763 | #endif |
| 1764 | m_socket = socket; |
| 1765 | } |
| 1766 | |
| 1767 | |
| 1768 | void CUpDownClient::ReGetClientSoft() |
no outgoing calls
no test coverage detected