feat(socks5): UDP proxying (#3353)

This commit is contained in:
Quentin McGaw
2026-06-11 09:32:38 -04:00
committed by GitHub
parent acab89b91a
commit 6d84462f00
10 changed files with 1311 additions and 95 deletions
-3
View File
@@ -43,7 +43,6 @@ type cmdType byte
const (
connect cmdType = 1
bind cmdType = 2
udpAssociate cmdType = 3
)
@@ -51,8 +50,6 @@ func (c cmdType) String() string {
switch c {
case connect:
return "connect"
case bind:
return "bind"
case udpAssociate:
return "UDP associate"
default: