mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Fix socks udp behavior
This commit is contained in:
parent
1fa58a8663
commit
e29eff15cd
1 changed files with 3 additions and 2 deletions
|
@ -206,12 +206,13 @@ func HandleConnection0(ctx context.Context, conn net.Conn, version byte, authent
|
|||
metadata.Destination = request.Destination
|
||||
var innerError error
|
||||
done := make(chan struct{})
|
||||
associatePacketConn := NewAssociatePacketConn(udpConn, request.Destination, conn)
|
||||
go func() {
|
||||
defer conn.Close()
|
||||
innerError = handler.NewPacketConnection(ctx, NewAssociatePacketConn(udpConn, request.Destination, conn), metadata)
|
||||
innerError = handler.NewPacketConnection(ctx, associatePacketConn, metadata)
|
||||
close(done)
|
||||
}()
|
||||
err = common.Error(io.Copy(io.Discard, conn))
|
||||
associatePacketConn.Close()
|
||||
<-done
|
||||
return E.Errors(innerError, err)
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue