| 2302 | |
| 2303 | #ifdef __DEBUG__ |
| 2304 | wxString CUpDownClient::GetClientFullInfo() |
| 2305 | { |
| 2306 | if (m_clientVerString.IsEmpty()) { |
| 2307 | ReGetClientSoft(); |
| 2308 | } |
| 2309 | |
| 2310 | return CFormat( "Client %s on IP:Port %s:%d using %s %s %s" ) |
| 2311 | % ( m_Username.IsEmpty() ? wxString(_("Unknown")) : m_Username ) |
| 2312 | % GetFullIP() |
| 2313 | % GetUserPort() |
| 2314 | % m_clientSoftString |
| 2315 | % m_clientVerString |
| 2316 | % m_strModVersion; |
| 2317 | } |
| 2318 | #endif |
| 2319 | |
| 2320 | wxString CUpDownClient::GetClientShortInfo() |
no test coverage detected