| 2288 | |
| 2289 | |
| 2290 | bool CUpDownClient::CheckHandshakeFinished() const |
| 2291 | { |
| 2292 | if (m_bHelloAnswerPending) { |
| 2293 | // this triggers way too often.. need more time to look at this -> only create a warning |
| 2294 | // The reason for this is that 2 clients are connecting to each other at the same time.. |
| 2295 | AddDebugLogLineN( logClient, "Handshake not finished while processing packet." ); |
| 2296 | return false; |
| 2297 | } |
| 2298 | |
| 2299 | return true; |
| 2300 | } |
| 2301 | |
| 2302 | |
| 2303 | #ifdef __DEBUG__ |
no outgoing calls
no test coverage detected