| 170 | } |
| 171 | |
| 172 | void NetConnection::netAddressTableInsert() |
| 173 | { |
| 174 | U32 hashIndex = HashNetAddress(&mNetAddress); |
| 175 | mNextTableHash = mHashTable[hashIndex]; |
| 176 | mHashTable[hashIndex] = this; |
| 177 | } |
| 178 | |
| 179 | void NetConnection::netAddressTableRemove() |
| 180 | { |
nothing calls this directly
no test coverage detected