| 75 | } |
| 76 | |
| 77 | NetConnection *NetInterface::findPendingConnection(const NetAddress *address, U32 connectSequence) |
| 78 | { |
| 79 | for(U32 i = 0; i < mPendingConnections.size(); i++) |
| 80 | if(Net::compareAddresses(address, mPendingConnections[i]->getNetAddress()) && |
| 81 | connectSequence == mPendingConnections[i]->getSequence()) |
| 82 | return mPendingConnections[i]; |
| 83 | return NULL; |
| 84 | } |
| 85 | |
| 86 | void NetInterface::processPacketReceiveEvent(NetAddress srcAddress, RawData packetData) |
| 87 | { |
nothing calls this directly
no test coverage detected