pmtud package

This commit is contained in:
Quentin McGaw
2025-08-19 20:04:22 +00:00
parent 5306e3bab1
commit e21d798f57
14 changed files with 859 additions and 0 deletions

10
internal/pmtud/errors.go Normal file
View File

@@ -0,0 +1,10 @@
package pmtud
import (
"errors"
)
var (
ErrICMPDestinationUnreachable = errors.New("ICMP destination unreachable")
ErrICMPBodyUnsupported = errors.New("ICMP body type is not supported")
)