File diff r25654:e264fd698eb2 → r25655:1030dcb7eb52
src/network/core/host.cpp
Show inline comments
 
@@ -131,10 +131,10 @@ void NetworkFindBroadcastIPs(NetworkAddr
 
	NetworkFindBroadcastIPsInternal(broadcast);
 

	
 
	/* Now display to the debug all the detected ips */
 
	DEBUG(net, 3, "Detected broadcast addresses:");
 
	Debug(net, 3, "Detected broadcast addresses:");
 
	int i = 0;
 
	for (NetworkAddress &addr : *broadcast) {
 
		addr.SetPort(NETWORK_DEFAULT_PORT);
 
		DEBUG(net, 3, "  %d) %s", i++, addr.GetHostname());
 
		Debug(net, 3, "  {}) {}", i++, addr.GetHostname());
 
	}
 
}