mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-03-31 10:47:35 +03:00
10 lines
164 B
Go
10 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")
|
|
)
|