add a function to set the UDP send buffer size

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.
This commit is contained in:
Marten Seemann 2023-05-08 14:19:57 +03:00
parent 600502ab06
commit 74be4d2755
10 changed files with 150 additions and 8 deletions

View file

@ -2,4 +2,5 @@
package quic
func forceSetReceiveBuffer(c interface{}, bytes int) error { return nil }
func forceSetReceiveBuffer(c any, bytes int) error { return nil }
func forceSetSendBuffer(c any, bytes int) error { return nil }