mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add support for writing the ECN control message (Linux, macOS)
This commit is contained in:
parent
a7f807856c
commit
f919473598
8 changed files with 91 additions and 3 deletions
|
@ -8,6 +8,7 @@ import (
|
|||
|
||||
"golang.org/x/sys/windows"
|
||||
|
||||
"github.com/quic-go/quic-go/internal/protocol"
|
||||
"github.com/quic-go/quic-go/internal/utils"
|
||||
)
|
||||
|
||||
|
@ -52,3 +53,6 @@ func isRecvMsgSizeErr(err error) bool {
|
|||
// https://docs.microsoft.com/en-us/windows/win32/winsock/windows-sockets-error-codes-2
|
||||
return errors.Is(err, windows.WSAEMSGSIZE)
|
||||
}
|
||||
|
||||
func appendIPv4ECNMsg([]byte, protocol.ECN) []byte { return nil }
|
||||
func appendIPv6ECNMsg([]byte, protocol.ECN) []byte { return nil }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue