优化 socks 解析流程

This commit is contained in:
2025-02-26 13:56:56 +08:00
parent b50dc3d91c
commit 7ee4ded08c
12 changed files with 301 additions and 104 deletions

View File

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