mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
04d7cef294
- this makes PMTUD TCP reliable - this only works on kernels with the mark module - on kernels without the mark module, the icmp pmtud mtu found is used
12 lines
180 B
Go
12 lines
180 B
Go
//go:build !linux && !windows
|
|
|
|
package tcp
|
|
|
|
func setMark(fd, excludeMark int) error {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func setMTUDiscovery(fd int) error {
|
|
panic("not implemented")
|
|
}
|