Files
gluetun/internal/pmtud/errors.go
Quentin McGaw e21d798f57 pmtud package
2025-10-06 09:57:15 +00:00

11 lines
200 B
Go

package pmtud
import (
"errors"
)
var (
ErrICMPDestinationUnreachable = errors.New("ICMP destination unreachable")
ErrICMPBodyUnsupported = errors.New("ICMP body type is not supported")
)