mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-03-31 10:47:35 +03:00
10 lines
371 B
Go
10 lines
371 B
Go
//go:build !linux
|
|
|
|
package quic
|
|
|
|
func forceSetReceiveBuffer(c any, bytes int) error { return nil }
|
|
func forceSetSendBuffer(c any, bytes int) error { return nil }
|
|
|
|
func appendUDPSegmentSizeMsg([]byte, uint16) []byte { return nil }
|
|
func isGSOError(error) bool { return false }
|
|
func isPermissionError(err error) bool { return false }
|