mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
38338863dc
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
18 lines
376 B
Go
18 lines
376 B
Go
package portmapper
|
|
|
|
import "net"
|
|
|
|
func newMockProxyCommand(proto string, hostIP net.IP, hostPort int, containerIP net.IP, containerPort int, userlandProxyPath string) (userlandProxy, error) {
|
|
return &mockProxyCommand{}, nil
|
|
}
|
|
|
|
type mockProxyCommand struct {
|
|
}
|
|
|
|
func (p *mockProxyCommand) Start() error {
|
|
return nil
|
|
}
|
|
|
|
func (p *mockProxyCommand) Stop() error {
|
|
return nil
|
|
}
|