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

Method removeFromTable

Engine/source/app/net/tcpObject.cpp:187–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187void TCPObject::removeFromTable()
188{
189 for(TCPObject **walk = &table[mTag.getHash() & TableMask]; *walk; walk = &((*walk)->mNext))
190 {
191 if(*walk == this)
192 {
193 *walk = mNext;
194 return;
195 }
196 }
197}
198
199void processConnectedReceiveEvent(NetSocket sock, RawData incomingData);
200void processConnectedAcceptEvent(NetSocket listeningPort, NetSocket newConnection, NetAddress originatingAddress);

Callers

nothing calls this directly

Calls 1

getHashMethod · 0.45

Tested by

no test coverage detected