(host, port string)
| 227 | } |
| 228 | |
| 229 | func proxyDirect(host, port string) error { |
| 230 | return proxyDirectWithIO(host, port, os.Stdin, os.Stdout) |
| 231 | } |
| 232 | |
| 233 | func proxyDirectWithIO(host, port string, stdin io.Reader, stdout io.Writer) error { |
| 234 | address := net.JoinHostPort(host, port) |
no test coverage detected
searching dependent graphs…