sandbox_externalkey.go 209 B

123456789101112
  1. package libnetwork
  2. import "github.com/docker/docker/pkg/reexec"
  3. type setKeyData struct {
  4. ContainerID string
  5. Key string
  6. }
  7. func init() {
  8. reexec.Register("libnetwork-setkey", processSetKeyReexec)
  9. }