net/batching: fix compile-time assert (#16864)

Updates #cleanup

Signed-off-by: Jordan Whited <jordan@tailscale.com>
This commit is contained in:
Jordan Whited
2025-08-14 10:48:06 -07:00
committed by GitHub
parent 819db6759c
commit c083a9b053

View File

@@ -45,7 +45,7 @@ type xnetBatchWriter interface {
var (
// [linuxBatchingConn] implements [Conn].
_ Conn = &linuxBatchingConn{}
_ Conn = (*linuxBatchingConn)(nil)
)
// linuxBatchingConn is a UDP socket that provides batched i/o. It implements