| 415 | //----------------------------------------------------------------------------- |
| 416 | |
| 417 | void queryMasterGameTypes() |
| 418 | { |
| 419 | Vector<MasterInfo> *masterList = getMasterServerList(); |
| 420 | if ( masterList->size() != 0 ) |
| 421 | { |
| 422 | U32 master = Sim::getCurrentTime() % masterList->size(); |
| 423 | // Send a request to the master server for the game types: |
| 424 | Con::printf( "Requesting game types from the master server..." ); |
| 425 | sendPacket( NetInterface::MasterServerGameTypesRequest, &(*masterList)[master].address, gKey, gPingSession, 0 ); |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | //----------------------------------------------------------------------------- |
| 430 |
nothing calls this directly
no test coverage detected