Remeved the commented BUGFIX tags

This commit is contained in:
Kayne Ruse
2014-09-10 17:00:13 +10:00
parent 712d94d3b2
commit ad2c65dc67
5 changed files with 3 additions and 7 deletions
-2
View File
@@ -35,8 +35,6 @@ void ServerApplication::HandlePing(ServerPacket* const argPacket) {
void ServerApplication::HandlePong(ServerPacket* const argPacket) {
//find and update the specified client
//BUGFIX: running multiple clients on one computer will result in matching host values; check the ports too
for (auto& it : clientMap) {
if (it.second.GetAddress().host == argPacket->srcAddress.host &&
it.second.GetAddress().port == argPacket->srcAddress.port