| 890 | //----------------------------------------------------------------------------- |
| 891 | |
| 892 | static void pushPingRequest( const NetAddress* addr ) |
| 893 | { |
| 894 | if( addressFinished( addr ) ) |
| 895 | return; |
| 896 | |
| 897 | Ping p; |
| 898 | p.address = *addr; |
| 899 | p.session = gPingSession; |
| 900 | p.key = 0; |
| 901 | p.time = 0; |
| 902 | p.tryCount = gPingRetryCount; |
| 903 | p.broadcast = false; |
| 904 | gPingList.push_back( p ); |
| 905 | gServerPingCount++; |
| 906 | } |
| 907 | |
| 908 | //----------------------------------------------------------------------------- |
| 909 |
no test coverage detected