Server is a SOCKS 5 proxy server
| 26 | |
| 27 | // Server is a SOCKS 5 proxy server |
| 28 | type Server struct { |
| 29 | config *ServerConfig |
| 30 | policyManager policy.Manager |
| 31 | } |
| 32 | |
| 33 | // NewServer creates a new Server object. |
| 34 | func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected