1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #14297 from pwaller/move-nat-pkg

Move /nat to /pkg/nat
This commit is contained in:
Alexander Morozov 2015-06-30 13:23:30 -07:00
commit caa4acc7b1
20 changed files with 16 additions and 16 deletions

View file

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/docker/docker/nat"
flag "github.com/docker/docker/pkg/mflag" flag "github.com/docker/docker/pkg/mflag"
"github.com/docker/docker/pkg/nat"
) )
// CmdPort lists port mappings for a container. // CmdPort lists port mappings for a container.

View file

@ -18,8 +18,8 @@ import (
"strings" "strings"
"github.com/Sirupsen/logrus" "github.com/Sirupsen/logrus"
"github.com/docker/docker/nat"
flag "github.com/docker/docker/pkg/mflag" flag "github.com/docker/docker/pkg/mflag"
"github.com/docker/docker/pkg/nat"
"github.com/docker/docker/runconfig" "github.com/docker/docker/runconfig"
) )

View file

@ -21,12 +21,12 @@ import (
"github.com/docker/docker/daemon/logger/jsonfilelog" "github.com/docker/docker/daemon/logger/jsonfilelog"
"github.com/docker/docker/daemon/network" "github.com/docker/docker/daemon/network"
"github.com/docker/docker/image" "github.com/docker/docker/image"
"github.com/docker/docker/nat"
"github.com/docker/docker/pkg/archive" "github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/broadcastwriter" "github.com/docker/docker/pkg/broadcastwriter"
"github.com/docker/docker/pkg/ioutils" "github.com/docker/docker/pkg/ioutils"
"github.com/docker/docker/pkg/jsonlog" "github.com/docker/docker/pkg/jsonlog"
"github.com/docker/docker/pkg/mount" "github.com/docker/docker/pkg/mount"
"github.com/docker/docker/pkg/nat"
"github.com/docker/docker/pkg/promise" "github.com/docker/docker/pkg/promise"
"github.com/docker/docker/pkg/symlink" "github.com/docker/docker/pkg/symlink"
"github.com/docker/docker/runconfig" "github.com/docker/docker/runconfig"

View file

@ -18,10 +18,10 @@ import (
"github.com/docker/docker/daemon/execdriver" "github.com/docker/docker/daemon/execdriver"
"github.com/docker/docker/daemon/network" "github.com/docker/docker/daemon/network"
"github.com/docker/docker/links" "github.com/docker/docker/links"
"github.com/docker/docker/nat"
"github.com/docker/docker/pkg/archive" "github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/directory" "github.com/docker/docker/pkg/directory"
"github.com/docker/docker/pkg/ioutils" "github.com/docker/docker/pkg/ioutils"
"github.com/docker/docker/pkg/nat"
"github.com/docker/docker/pkg/stringid" "github.com/docker/docker/pkg/stringid"
"github.com/docker/docker/pkg/ulimit" "github.com/docker/docker/pkg/ulimit"
"github.com/docker/docker/runconfig" "github.com/docker/docker/runconfig"

View file

@ -1,7 +1,7 @@
package daemon package daemon
import ( import (
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
"testing" "testing"
) )

View file

@ -7,8 +7,8 @@ import (
"strings" "strings"
"github.com/docker/docker/api/types" "github.com/docker/docker/api/types"
"github.com/docker/docker/nat"
"github.com/docker/docker/pkg/graphdb" "github.com/docker/docker/pkg/graphdb"
"github.com/docker/docker/pkg/nat"
"github.com/docker/docker/pkg/parsers/filters" "github.com/docker/docker/pkg/parsers/filters"
) )

View file

@ -1,6 +1,6 @@
package network package network
import "github.com/docker/docker/nat" import "github.com/docker/docker/pkg/nat"
type Address struct { type Address struct {
Addr string Addr string

View file

@ -9,7 +9,7 @@ import (
"strings" "strings"
"time" "time"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
"github.com/go-check/check" "github.com/go-check/check"
) )

View file

@ -18,7 +18,7 @@ import (
"sync" "sync"
"time" "time"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
"github.com/docker/libnetwork/resolvconf" "github.com/docker/libnetwork/resolvconf"
"github.com/go-check/check" "github.com/go-check/check"
) )

View file

@ -5,7 +5,7 @@ import (
"path" "path"
"strings" "strings"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
) )
type Link struct { type Link struct {

View file

@ -5,7 +5,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
) )
func TestLinkNaming(t *testing.T) { func TestLinkNaming(t *testing.T) {

View file

@ -5,7 +5,7 @@ import (
"io" "io"
"strings" "strings"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
) )
// Entrypoint encapsulates the container entrypoint. // Entrypoint encapsulates the container entrypoint.

View file

@ -8,7 +8,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
) )
func parse(t *testing.T, args string) (*Config, *HostConfig, error) { func parse(t *testing.T, args string) (*Config, *HostConfig, error) {

View file

@ -5,7 +5,7 @@ import (
"io" "io"
"strings" "strings"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
"github.com/docker/docker/pkg/ulimit" "github.com/docker/docker/pkg/ulimit"
) )

View file

@ -3,7 +3,7 @@ package runconfig
import ( import (
"strings" "strings"
"github.com/docker/docker/nat" "github.com/docker/docker/pkg/nat"
) )
func Merge(userConf, imageConf *Config) error { func Merge(userConf, imageConf *Config) error {

View file

@ -5,9 +5,9 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/docker/docker/nat"
"github.com/docker/docker/opts" "github.com/docker/docker/opts"
flag "github.com/docker/docker/pkg/mflag" flag "github.com/docker/docker/pkg/mflag"
"github.com/docker/docker/pkg/nat"
"github.com/docker/docker/pkg/parsers" "github.com/docker/docker/pkg/parsers"
"github.com/docker/docker/pkg/ulimit" "github.com/docker/docker/pkg/ulimit"
"github.com/docker/docker/pkg/units" "github.com/docker/docker/pkg/units"