| 1014 | //----------------------------------------------------------------------------- |
| 1015 | |
| 1016 | static ServerInfo* findOrCreateServerInfo( const NetAddress* addr ) |
| 1017 | { |
| 1018 | ServerInfo* ret = findServerInfo( addr ); |
| 1019 | if ( ret ) |
| 1020 | return ret; |
| 1021 | |
| 1022 | ServerInfo si; |
| 1023 | si.address = *addr; |
| 1024 | gServerList.push_back( si ); |
| 1025 | |
| 1026 | return &gServerList.last(); |
| 1027 | } |
| 1028 | |
| 1029 | //----------------------------------------------------------------------------- |
| 1030 |
no test coverage detected