neterror

package
v1.66.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 21, 2024 License: BSD-3-Clause Imports: 6 Imported by: 12

Documentation

Overview

Package neterror classifies network errors.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PacketWasTruncated

func PacketWasTruncated(err error) bool

PacketWasTruncated reports whether err indicates truncation but the RecvFrom that generated err was otherwise successful. On Windows, Go's UDP RecvFrom calls WSARecvFrom which returns the WSAEMSGSIZE error code when the received datagram is larger than the provided buffer. When that happens, both a valid size and an error are returned (as per the partial fix for golang/go#14074). If the WSAEMSGSIZE error is returned, then we ignore the error to get semantics similar to the POSIX operating systems. One caveat is that it appears that the source address is not returned when WSAEMSGSIZE occurs, but we do not currently look at the source address.

func ShouldDisableUDPGSO added in v1.40.0

func ShouldDisableUDPGSO(err error) bool

func TreatAsLostUDP

func TreatAsLostUDP(err error) bool

TreatAsLostUDP reports whether err is an error from a UDP send operation that should be treated as a UDP packet that just got lost.

Notably, on Linux this reports true for EPERM errors (from outbound firewall blocks) which aren't really send errors; they're just sends that are never going to make it because the local OS blocked it.

Types

type ErrUDPGSODisabled added in v1.40.0

type ErrUDPGSODisabled struct {
	OnLaddr  string
	RetryErr error
}

func (ErrUDPGSODisabled) Error added in v1.40.0

func (e ErrUDPGSODisabled) Error() string

func (ErrUDPGSODisabled) Unwrap added in v1.40.0

func (e ErrUDPGSODisabled) Unwrap() error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL