StandardRequestHandler implements the base socks5 command processing
| 18 | |
| 19 | // StandardRequestHandler implements the base socks5 command processing |
| 20 | type StandardRequestHandler struct { |
| 21 | dialer Dialer |
| 22 | accessPolicy *ipaccess.Policy |
| 23 | } |
| 24 | |
| 25 | // NewRequestHandler creates a standard SOCKS5 request handler |
| 26 | // This handles the SOCKS5 commands and proxies them to their destination |
nothing calls this directly
no outgoing calls
no test coverage detected