MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / pushPingRequest

Function pushPingRequest

Engine/source/app/net/serverQuery.cpp:891–905  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

889//-----------------------------------------------------------------------------
890
891static void pushPingRequest( const NetAddress* addr )
892{
893 if( addressFinished( addr ) )
894 return;
895
896 Ping p;
897 p.address = *addr;
898 p.session = gPingSession;
899 p.key = 0;
900 p.time = 0;
901 p.tryCount = gPingRetryCount;
902 p.broadcast = false;
903 gPingList.push_back( p );
904 gServerPingCount++;
905}
906
907//-----------------------------------------------------------------------------
908

Callers 5

querySingleServerFunction · 0.85
pushServerFavoritesFunction · 0.85
handleGamePingResponseFunction · 0.85

Calls 2

addressFinishedFunction · 0.85
push_backMethod · 0.45

Tested by

no test coverage detected