uquic/sys_conn_helper_nonlinux.go
2023-08-16 22:09:30 +07:00

9 lines
302 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 }