claude implements UDP GRO

This commit is contained in:
Jay Wren
2026-02-04 11:02:06 -05:00
parent 6b6a4bc1cc
commit 030b7e2763
8 changed files with 183 additions and 21 deletions

View File

@@ -106,6 +106,10 @@ func (u *GenericConn) SupportsGSO() bool {
return false
}
func (u *GenericConn) SupportsGRO() bool {
return false
}
func (u *GenericConn) WriteBatch(pkts []BatchPacket) (int, error) {
for i := range pkts {
if err := u.WriteTo(pkts[i].Payload, pkts[i].Addr); err != nil {