forked from quic-go/quic-go
11 lines
164 B
Go
11 lines
164 B
Go
//go:build !linux
|
|
|
|
package quic
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
errGSO = errors.New("fake GSO error")
|
|
errNotPermitted = errors.New("fake not permitted error")
|
|
)
|