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

@ -153,7 +153,7 @@ func (s *System) start() error {
go s.acceptLoop(tcpListener)
}
s.tcpNat = NewNat(s.ctx, s.udpTimeout)
s.udpNat = udpnat.New(s.handler, s.preparePacketConnection, s.udpTimeout)
s.udpNat = udpnat.New(s.handler, s.preparePacketConnection, s.udpTimeout, false)
return nil
}