使用自定义流程实现网关协议解析转发功能

This commit is contained in:
2025-02-24 17:21:47 +08:00
parent 10a4f010ce
commit 83f4f06740
25 changed files with 1424 additions and 139 deletions

7
pkg/socks5/error.go Normal file
View File

@@ -0,0 +1,7 @@
package socks5
type ConfigError string
func (c ConfigError) Error() string {
return string(c)
}