mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
Use the correct source IP when binding multiple IPs
When the server is listening on multiple interfaces or interfaces with multiple IPs, the outgoing datagrams are sometime delivered with the wrong source IP address. In order to fix that, each quic connection needs to extract the destination IP (and optionally interface id) of the received datagrams, and set it as source IP (and interface) on the sent datagrams. On most platforms, this can be done using ancillary data with recvmsg() and sendmsg(). Some of the machinery for this is already there for ECN, this change extends it to read the destination IP info and write it to the outgoing packets. Fix #1736
This commit is contained in:
parent
3bce408c8d
commit
eb6bdfdfc1
15 changed files with 468 additions and 181 deletions
|
@ -5,3 +5,13 @@ package quic
|
|||
import "golang.org/x/sys/unix"
|
||||
|
||||
const msgTypeIPTOS = unix.IP_TOS
|
||||
|
||||
const (
|
||||
ipv4RECVPKTINFO = 0x8
|
||||
ipv6RECVPKTINFO = 0x31
|
||||
)
|
||||
|
||||
const (
|
||||
msgTypeIPv4PKTINFO = 0x8
|
||||
msgTypeIPv6PKTINFO = 0x32
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue