mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
set the don't fragment (DF) bit on Windows (#3155)
This commit is contained in:
parent
0a063966a7
commit
84e03e5976
2 changed files with 41 additions and 1 deletions
|
@ -11,8 +11,26 @@ import (
|
||||||
"golang.org/x/sys/windows"
|
"golang.org/x/sys/windows"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const IP_DONTFRAGMENT = 14
|
||||||
|
|
||||||
func newConn(c net.PacketConn) (connection, error) {
|
func newConn(c net.PacketConn) (connection, error) {
|
||||||
return &basicConn{PacketConn: c}, nil
|
conn, ok := c.(interface {
|
||||||
|
SyscallConn() (syscall.RawConn, error)
|
||||||
|
})
|
||||||
|
if !ok {
|
||||||
|
return nil, errors.New("doesn't have a SyscallConn")
|
||||||
|
}
|
||||||
|
rawConn, err := conn.SyscallConn()
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("couldn't get syscall.RawConn: %w", err)
|
||||||
|
}
|
||||||
|
var serr error
|
||||||
|
if err := rawConn.Control(func(fd uintptr) {
|
||||||
|
serr = windows.SetsockoptInt(windows.Handle(fd), windows.IPPROTO_IP, IP_DONTFRAGMENT, 1)
|
||||||
|
}); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &basicConn{PacketConn: c}, serr
|
||||||
}
|
}
|
||||||
|
|
||||||
func inspectReadBuffer(c net.PacketConn) (int, error) {
|
func inspectReadBuffer(c net.PacketConn) (int, error) {
|
||||||
|
|
22
conn_windows_test.go
Normal file
22
conn_windows_test.go
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
// +build windows
|
||||||
|
|
||||||
|
package quic
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net"
|
||||||
|
|
||||||
|
. "github.com/onsi/ginkgo"
|
||||||
|
. "github.com/onsi/gomega"
|
||||||
|
)
|
||||||
|
|
||||||
|
var _ = Describe("Windows Conn Test", func() {
|
||||||
|
It("try newConn", func() {
|
||||||
|
addr, err := net.ResolveUDPAddr("udp4", "localhost:0")
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
udpConn, err := net.ListenUDP("udp4", addr)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
conn, err := newConn(udpConn)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
_ = conn.Close()
|
||||||
|
})
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue