You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
listen on any address (incl. ipv6 if you use ipv6_server = 1)
listen on a specific ipv4 or ipv6
We should allow for more flexibility by allowing binding to multiple addresses.
There are two approaches we could take.
permit at most one ipv4 and one ipv6 socket: this is easy to implement in the existing code since you can uniquely decide which packet should be received/sent from which socket. this will suffice in 99.9% use cases.
total freedom: this requires more changes to the connection code to track which peer is using which socket.
Right now you can either:
ipv6_server = 1
)We should allow for more flexibility by allowing binding to multiple addresses.
There are two approaches we could take.
previous work: #2604
The text was updated successfully, but these errors were encountered: