| 26 | const HintsHeaderName = "X-Src-IP-Hints" |
| 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 |
| 33 |
no outgoing calls
no test coverage detected