mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a48b541da3
Signed-off-by: Puneet Pruthi <puneetpruthi@gmail.com>
34 lines
658 B
Go
34 lines
658 B
Go
package portmapper
|
|
|
|
import (
|
|
"net"
|
|
"os/exec"
|
|
"strconv"
|
|
)
|
|
|
|
func newProxyCommand(proto string, hostIP net.IP, hostPort int, containerIP net.IP, containerPort int, proxyPath string) (userlandProxy, error) {
|
|
path := proxyPath
|
|
if proxyPath == "" {
|
|
cmd, err := exec.LookPath(userlandProxyCommandName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
path = cmd
|
|
}
|
|
|
|
args := []string{
|
|
path,
|
|
"-proto", proto,
|
|
"-host-ip", hostIP.String(),
|
|
"-host-port", strconv.Itoa(hostPort),
|
|
"-container-ip", containerIP.String(),
|
|
"-container-port", strconv.Itoa(containerPort),
|
|
}
|
|
|
|
return &proxyCommand{
|
|
cmd: &exec.Cmd{
|
|
Path: path,
|
|
Args: args,
|
|
},
|
|
}, nil
|
|
}
|