11 lines
200 B
Go
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")
|
||
|
|
)
|