How can I listen and serve HTTP on multiple IP adresses using the Go standard library ?
I have a server with many IP adresses and network interfaces and I want to listen and serve HTTP on two addresses. Using the Serve function of net/http package I can specify only one net.Listener.
...