claude implements UDP GSO

This commit is contained in:
Jay Wren
2026-02-04 10:29:37 -05:00
parent 30db76ed79
commit 6b6a4bc1cc
9 changed files with 227 additions and 6 deletions

View File

@@ -67,3 +67,7 @@ func setIovecLen(iov *iovec, l int) {
func setMsghdrIovlen(hdr *msghdr, l int) {
hdr.Iovlen = uint64(l)
}
func setMsghdrControllen(hdr *msghdr, l int) {
hdr.Controllen = uint64(l)
}