2015-11-23 17:02:42 -05:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package libnetwork
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
|
2021-04-05 20:24:47 -04:00
|
|
|
"github.com/docker/docker/libnetwork/types"
|
2015-11-23 17:02:42 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// processSetKeyReexec is a private function that must be called only on an reexec path
|
|
|
|
// It expects 3 args { [0] = "libnetwork-setkey", [1] = <container-id>, [2] = <controller-id> }
|
2016-02-01 12:58:07 -05:00
|
|
|
// It also expects configs.HookState as a json string in <stdin>
|
2015-11-23 17:02:42 -05:00
|
|
|
// Refer to https://github.com/opencontainers/runc/pull/160/ for more information
|
|
|
|
func processSetKeyReexec() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetExternalKey provides a convenient way to set an External key to a sandbox
|
|
|
|
func SetExternalKey(controllerID string, containerID string, key string) error {
|
|
|
|
return types.NotImplementedErrorf("SetExternalKey isn't supported on non linux systems")
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendKey(c net.Conn, data setKeyData) error {
|
|
|
|
return types.NotImplementedErrorf("sendKey isn't supported on non linux systems")
|
|
|
|
}
|
|
|
|
|
|
|
|
func processReturn(r io.Reader) error {
|
|
|
|
return types.NotImplementedErrorf("processReturn isn't supported on non linux systems")
|
|
|
|
}
|
|
|
|
|
|
|
|
// no-op on non linux systems
|
|
|
|
func (c *controller) startExternalKeyListener() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *controller) acceptClientConnections(sock string, l net.Listener) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *controller) processExternalKey(conn net.Conn) error {
|
|
|
|
return types.NotImplementedErrorf("processExternalKey isn't supported on non linux systems")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *controller) stopExternalKeyListener() {
|
|
|
|
}
|