| 96 | |
| 97 | |
| 98 | CUpDownClient::CUpDownClient(CClientTCPSocket* sender) |
| 99 | { |
| 100 | #ifdef __DEBUG__ |
| 101 | m_socket = NULL; |
| 102 | SetSocket(sender); |
| 103 | #else |
| 104 | m_socket = sender; |
| 105 | #endif |
| 106 | Init(); |
| 107 | } |
| 108 | |
| 109 | CUpDownClient::CUpDownClient(uint16 in_port, uint32 in_userid, uint32 in_serverip, uint16 in_serverport, CPartFile* in_reqfile, bool ed2kID, bool checkfriend) |
| 110 | { |
nothing calls this directly
no test coverage detected