mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
be92aa2ac4
- Existing option `WIREGUARD_MTU` , if set, disables PMTUD and is used - New option `PMTUD_ICMP_ADDRESSES=1.1.1.1,8.8.8.8` and `PMTUD_TCP_ADDRESSES=1.1.1.1:443,8.8.8.8:443` - ICMP PMTUD now targets external-by-default IP addresses - New TCP PMTUD (binary search only) as a second MTU confirmation and fallback mechanism. - Force set TCP MSS to MTU - IP header - TCP base header - "magic 20 bytes" 🎆 - Fix #3108
31 lines
957 B
Go
31 lines
957 B
Go
package icmp
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
ErrNotPermitted = errors.New("ICMP not permitted")
|
|
ErrDestinationUnreachable = errors.New("ICMP destination unreachable")
|
|
ErrCommunicationAdministrativelyProhibited = errors.New("communication administratively prohibited")
|
|
ErrBodyUnsupported = errors.New("ICMP body type is not supported")
|
|
ErrMTUNotFound = errors.New("MTU not found")
|
|
)
|
|
|
|
func wrapConnErr(err error, timedCtx context.Context, pingTimeout time.Duration) error { //nolint:revive
|
|
switch {
|
|
case strings.HasSuffix(err.Error(), "sendto: operation not permitted"):
|
|
err = fmt.Errorf("%w", ErrNotPermitted)
|
|
case errors.Is(timedCtx.Err(), context.DeadlineExceeded):
|
|
err = fmt.Errorf("%w (timed out after %s)", net.ErrClosed, pingTimeout)
|
|
case timedCtx.Err() != nil:
|
|
err = timedCtx.Err()
|
|
}
|
|
return err
|
|
}
|