This commit is contained in:
Quentin McGaw
2026-05-27 00:53:42 +00:00
parent ff6e45fae0
commit 0a4ac7cc0e
6 changed files with 928 additions and 51 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: