Files
gluetun/internal/pmtud/tcp/tcp_unspecified.go
T
Quentin McGaw c6b211ef9b feat(pmtud/tcp): support mixed IPv4 and IPv6 TCP servers
- Add default cloudflare and google tls ipv6 servers to default tcp servers
- update integration test to try against both ipv4 and ipv6 servers
2026-02-19 17:11:16 +00:00

12 lines
191 B
Go

//go:build !linux && !windows
package tcp
func setMark(fd, excludeMark int) error {
panic("not implemented")
}
func setMTUDiscovery(fd int, ipv4 bool) error {
panic("not implemented")
}