fix up ipv6 address output

This commit is contained in:
bert hubert
2018-04-13 13:39:59 +02:00
parent c3386dad83
commit d9b33de683

View File

@ -353,7 +353,7 @@ try
thread udpServer(udpThread, local, &udplistener, &zones);
for(;;) {
ComboAddress remote;
ComboAddress remote(local); // so it has room for IPv6
int client = SAccept(tcplistener, remote);
thread t(tcpClientThread, local, remote, client, &zones);
t.detach();