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