qerr

package
v0.11.1 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2019 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ErrorCode

type ErrorCode uint16

ErrorCode can be used as a normal error without reason.

const (
	NoError                 ErrorCode = 0x0
	InternalError           ErrorCode = 0x1
	ServerBusy              ErrorCode = 0x2
	FlowControlError        ErrorCode = 0x3
	StreamLimitError        ErrorCode = 0x4
	StreamStateError        ErrorCode = 0x5
	FinalSizeError          ErrorCode = 0x6
	FrameEncodingError      ErrorCode = 0x7
	TransportParameterError ErrorCode = 0x8
	VersionNegotiationError ErrorCode = 0x9
	ProtocolViolation       ErrorCode = 0xa
	InvalidMigration        ErrorCode = 0xc
)

The error codes defined by QUIC

func (ErrorCode) Error

func (e ErrorCode) Error() string

func (ErrorCode) String

func (e ErrorCode) String() string

type QuicError

type QuicError struct {
	ErrorCode    ErrorCode
	ErrorMessage string
	// contains filtered or unexported fields
}

A QuicError consists of an error code plus a error reason

func CryptoError

func CryptoError(tlsAlert uint8, errorMessage string) *QuicError

CryptoError create a new QuicError instance for a crypto error

func Error

func Error(errorCode ErrorCode, errorMessage string) *QuicError

Error creates a new QuicError instance

func TimeoutError

func TimeoutError(errorMessage string) *QuicError

TimeoutError creates a new QuicError instance for a timeout error

func ToQuicError

func ToQuicError(err error) *QuicError

ToQuicError converts an arbitrary error to a QuicError. It leaves QuicErrors unchanged, and properly handles `ErrorCode`s.

func (*QuicError) Error

func (e *QuicError) Error() string

func (*QuicError) IsCryptoError

func (e *QuicError) IsCryptoError() bool

IsCryptoError says if this error is a crypto error

func (*QuicError) Temporary

func (e *QuicError) Temporary() bool

Temporary says if the error is temporary.

func (*QuicError) Timeout

func (e *QuicError) Timeout() bool

Timeout says if this error is a timeout.

Jump to

Keyboard shortcuts

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