hotfix(socks5): bump UDP association packet queue channel capacity from 2 to 64

- Fix #3368
This commit is contained in:
Quentin McGaw
2026-06-14 14:24:17 +00:00
parent 366062dc12
commit 6c76273ef6
+1 -1
View File
@@ -76,7 +76,7 @@ func (r *udpRouter) registerAssociation(controlConn net.Conn, expectedAddrPort n
r.mutex.Lock()
defer r.mutex.Unlock()
const udpPacketChannelBuffer = 2
const udpPacketChannelBuffer = 64
associationID := r.nextAssociationID
r.nextAssociationID++