| 481 | //----------------------------------------------------------------------------- |
| 482 | |
| 483 | void queryMasterGameTypes() |
| 484 | { |
| 485 | Vector<MasterInfo> *masterList = getMasterServerList(); |
| 486 | if ( masterList->size() != 0 ) |
| 487 | { |
| 488 | U32 master = Sim::getCurrentTime() % masterList->size(); |
| 489 | // Send a request to the master server for the game types: |
| 490 | Con::printf( "Requesting game types from the master server..." ); |
| 491 | sendPacket( NetInterface::MasterServerGameTypesRequest, &(*masterList)[master].address, gKey, gPingSession, 0 ); |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | //----------------------------------------------------------------------------- |
| 496 |
nothing calls this directly
no test coverage detected