Remove use of Write Unreachable as SendRejectionError panics when passing invalid packet

This commit is contained in:
世界 2023-09-22 11:28:50 +08:00
parent e212724bac
commit b6d323004e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 5 additions and 51 deletions

View file

@ -6,7 +6,6 @@ import (
"context"
"net/netip"
"time"
"unsafe"
"github.com/sagernet/gvisor/pkg/tcpip"
"github.com/sagernet/gvisor/pkg/tcpip/adapters/gonet"
@ -129,7 +128,7 @@ func (t *GVisor) Start() error {
endpoint.Abort()
return
}
gConn := &gUDPConn{UDPConn: udpConn, stack: ipStack, packet: (*gRequest)(unsafe.Pointer(request)).pkt.IncRef()}
gConn := &gUDPConn{UDPConn: udpConn}
go func() {
var metadata M.Metadata
metadata.Source = M.SocksaddrFromNet(lAddr)