| 869 | //----------------------------------------------------------------------------- |
| 870 | |
| 871 | static ServerInfo* findOrCreateServerInfo( const NetAddress* addr ) |
| 872 | { |
| 873 | ServerInfo* ret = findServerInfo( addr ); |
| 874 | if ( ret ) |
| 875 | return ret; |
| 876 | |
| 877 | ServerInfo si; |
| 878 | si.address = *addr; |
| 879 | gServerList.push_back( si ); |
| 880 | |
| 881 | return &gServerList.last(); |
| 882 | } |
| 883 | |
| 884 | //----------------------------------------------------------------------------- |
| 885 |
no test coverage detected