Fix gvisor UDP nat

This commit is contained in:
世界 2024-11-09 11:42:54 +08:00
parent b1e2673c21
commit 1015c096bb
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 7 additions and 7 deletions

View file

@ -37,7 +37,7 @@ func NewUDPForwarder(ctx context.Context, stack *stack.Stack, handler Handler, t
stack: stack,
handler: handler,
}
forwarder.udpNat = udpnat.New(handler, forwarder.PreparePacketConnection, timeout)
forwarder.udpNat = udpnat.New(handler, forwarder.PreparePacketConnection, timeout, true)
return forwarder
}