| 984 | //----------------------------------------------------------------------------- |
| 985 | |
| 986 | static S32 findPingEntry( Vector<Ping> &v, const NetAddress* addr ) |
| 987 | { |
| 988 | for ( U32 i = 0; i < v.size(); i++ ) |
| 989 | if ( Net::compareAddresses( addr, &v[i].address ) ) |
| 990 | return S32( i ); |
| 991 | return -1; |
| 992 | } |
| 993 | |
| 994 | //----------------------------------------------------------------------------- |
| 995 |
no test coverage detected