allow loopback connections

This commit is contained in:
Lee Salzman 2013-11-17 20:19:17 +02:00
parent 970ee42041
commit d45b44f2b5

View file

@ -297,7 +297,8 @@ enet_protocol_handle_connect (ENetHost * host, ENetProtocolHeader * header, ENet
peer = currentPeer;
}
else
if (currentPeer -> address.host == host -> receivedAddress.host)
if (currentPeer -> state != ENET_PEER_STATE_CONNECTING &&
currentPeer -> address.host == host -> receivedAddress.host)
{
if (currentPeer -> address.port == host -> receivedAddress.port &&
currentPeer -> connectID == command -> connect.connectID)