mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
This function is the equivalent to the function used to set the UDP receive buffer size. It's so similar that code generation is used to make a copy of the setReceiveBuffer function.
6 lines
165 B
Go
6 lines
165 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 }
|