================== idAsyncServer::GetClientIncomingCompression ================== */
| 539 | ================== |
| 540 | */ |
| 541 | float idAsyncServer::GetClientIncomingCompression( int clientNum ) const { |
| 542 | const serverClient_t &client = clients[clientNum]; |
| 543 | |
| 544 | if ( client.clientState < SCS_CONNECTED ) { |
| 545 | return 0.0f; |
| 546 | } else { |
| 547 | return client.channel.GetIncomingCompression(); |
| 548 | } |
| 549 | } |
| 550 | |
| 551 | /* |
| 552 | ================== |
no test coverage detected