github.com/rish1988/moby@v25.0.2+incompatible/libnetwork/portmapper/proxy_windows.go (about)

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