proxy_windows.go 256 B

12345678910
  1. package portmapper
  2. import (
  3. "errors"
  4. "net"
  5. )
  6. func newProxyCommand(proto string, hostIP net.IP, hostPort int, containerIP net.IP, containerPort int, proxyPath string) (userlandProxy, error) {
  7. return nil, errors.New("proxy is unsupported on windows")
  8. }