Files
gluetun/internal/pmtud/errors.go

11 lines
200 B
Go
Raw Normal View History

2025-08-19 20:04:22 +00:00
package pmtud
import (
"errors"
)
var (
ErrICMPDestinationUnreachable = errors.New("ICMP destination unreachable")
ErrICMPBodyUnsupported = errors.New("ICMP body type is not supported")
)