(*Request, io.ReadWriter)
| 14 | // RequestHandler is the functions needed to handle a SOCKS5 command |
| 15 | type RequestHandler interface { |
| 16 | Handle(*Request, io.ReadWriter) error |
| 17 | } |
| 18 | |
| 19 | // StandardRequestHandler implements the base socks5 command processing |
no outgoing calls