- home: when printing HTTP addresses to console, use all IP addresses
Close #1856 Squashed commit of the following: commit 47ff99f147216bf28f1395847148f084b9dd4deb Author: Simon Zolin <s.zolin@adguard.com> Date: Thu Jul 2 14:27:03 2020 +0300 - home: when printing HTTP addresses to console, use all IP addresses
This commit is contained in:
parent
da6cd57587
commit
250b254c33
|
@ -645,8 +645,10 @@ func printHTTPAddresses(proto string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, iface := range ifaces {
|
for _, iface := range ifaces {
|
||||||
address = net.JoinHostPort(iface.Addresses[0], port)
|
for _, addr := range iface.Addresses {
|
||||||
log.Printf("Go to %s://%s", proto, address)
|
address = net.JoinHostPort(addr, strconv.Itoa(config.BindPort))
|
||||||
|
log.Printf("Go to %s://%s", proto, address)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
address = net.JoinHostPort(config.BindHost, port)
|
address = net.JoinHostPort(config.BindHost, port)
|
||||||
|
|
Loading…
Reference in New Issue