mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
simplify syscall consts used for requesting / parsing IPv4 packet info (#3919)
This commit is contained in:
parent
4b0ca320a3
commit
d361637419
4 changed files with 8 additions and 11 deletions
|
@ -9,9 +9,8 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
msgTypeIPTOS = unix.IP_TOS
|
||||
ipv4RECVPKTINFO = unix.IP_PKTINFO
|
||||
msgTypeIPv4PKTINFO = unix.IP_PKTINFO
|
||||
msgTypeIPTOS = unix.IP_TOS
|
||||
ipv4PKTINFO = unix.IP_PKTINFO
|
||||
)
|
||||
|
||||
const batchSize = 8 // needs to smaller than MaxUint8 (otherwise the type of oobConn.readPos has to be changed)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue