(ctx context.Context, net, address string)
| 27 | |
| 28 | type HandlerDialer interface { |
| 29 | DialContext(ctx context.Context, net, address string) (net.Conn, error) |
| 30 | } |
| 31 | |
| 32 | type ForwardFunc = func(ctx context.Context, username string, incoming, outgoing io.ReadWriteCloser, network, address string) error |
no outgoing calls
no test coverage detected