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

@ -4,7 +4,6 @@ package tun
import (
"time"
"unsafe"
"github.com/sagernet/gvisor/pkg/buffer"
"github.com/sagernet/gvisor/pkg/tcpip/adapters/gonet"
@ -68,7 +67,7 @@ func (m *Mixed) 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)