mirror of
https://github.com/SagerNet/sing-quic.git
synced 2025-04-04 20:37:41 +03:00
Fix client's ListenPacket
This commit is contained in:
parent
bdcf4a07b9
commit
412455eba4
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ func (c *Client) ListenPacket(ctx context.Context) (net.PacketConn, error) {
|
||||||
return nil, E.New("UDP disabled by server")
|
return nil, E.New("UDP disabled by server")
|
||||||
}
|
}
|
||||||
var sessionID uint32
|
var sessionID uint32
|
||||||
clientPacketConn := newUDPPacketConn(ctx, conn.quicConn, func() {
|
clientPacketConn := newUDPPacketConn(c.ctx, conn.quicConn, func() {
|
||||||
conn.udpAccess.Lock()
|
conn.udpAccess.Lock()
|
||||||
delete(conn.udpConnMap, sessionID)
|
delete(conn.udpConnMap, sessionID)
|
||||||
conn.udpAccess.Unlock()
|
conn.udpAccess.Unlock()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue