mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c21eaf9a07
No need to vendor this file in other projects, and it's only used during tests. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
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
|
|
}
|