Move libnetwork to daemon/libnetwork

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2025-07-14 09:25:23 -07:00
parent f05652867d
commit 7a720df61f
1048 changed files with 615 additions and 615 deletions

View File

@@ -49,6 +49,11 @@ import (
libcontainerdtypes "github.com/docker/docker/daemon/internal/libcontainerd/types"
"github.com/docker/docker/daemon/internal/metrics"
pluginexec "github.com/docker/docker/daemon/internal/plugin/executor/containerd"
"github.com/docker/docker/daemon/libnetwork"
"github.com/docker/docker/daemon/libnetwork/cluster"
nwconfig "github.com/docker/docker/daemon/libnetwork/config"
"github.com/docker/docker/daemon/libnetwork/ipamutils"
"github.com/docker/docker/daemon/libnetwork/ipbits"
dlogger "github.com/docker/docker/daemon/logger"
"github.com/docker/docker/daemon/network"
"github.com/docker/docker/daemon/pkg/plugin"
@@ -59,11 +64,6 @@ import (
"github.com/docker/docker/dockerversion"
"github.com/docker/docker/image"
"github.com/docker/docker/layer"
"github.com/docker/docker/libnetwork"
"github.com/docker/docker/libnetwork/cluster"
nwconfig "github.com/docker/docker/libnetwork/config"
"github.com/docker/docker/libnetwork/ipamutils"
"github.com/docker/docker/libnetwork/ipbits"
"github.com/docker/docker/pkg/authorization"
"github.com/docker/docker/pkg/fileutils"
"github.com/docker/docker/pkg/idtools"