mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 06:22:10 +02:00
remove extra socket activation debugging
This commit is contained in:
parent
3c0c6aa189
commit
99c42b4d62
1 changed files with 0 additions and 2 deletions
|
@ -262,11 +262,9 @@ void AgentList::handlePingReply(sockaddr *agentAddress) {
|
||||||
// prioritize the private address so that we prune erroneous local matches
|
// prioritize the private address so that we prune erroneous local matches
|
||||||
if (socketMatch(agent->getPublicSocket(), agentAddress)) {
|
if (socketMatch(agent->getPublicSocket(), agentAddress)) {
|
||||||
agent->activatePublicSocket();
|
agent->activatePublicSocket();
|
||||||
std::cout << "Activated public socket for agent " << &*agent << "\n";
|
|
||||||
break;
|
break;
|
||||||
} else if (socketMatch(agent->getLocalSocket(), agentAddress)) {
|
} else if (socketMatch(agent->getLocalSocket(), agentAddress)) {
|
||||||
agent->activateLocalSocket();
|
agent->activateLocalSocket();
|
||||||
std::cout << "Activated local socket for agent " << &*agent << "\n";
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue