================== idAsyncServer::GetClientOutgoingCompression ================== */
| 524 | ================== |
| 525 | */ |
| 526 | float idAsyncServer::GetClientOutgoingCompression( int clientNum ) const { |
| 527 | const serverClient_t &client = clients[clientNum]; |
| 528 | |
| 529 | if ( client.clientState < SCS_CONNECTED ) { |
| 530 | return 0.0f; |
| 531 | } else { |
| 532 | return client.channel.GetOutgoingCompression(); |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | /* |
| 537 | ================== |
no test coverage detected