aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go')
-rw-r--r--vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go42
1 files changed, 0 insertions, 42 deletions
diff --git a/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go b/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go
deleted file mode 100644
index c7b0dc9..0000000
--- a/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go
+++ /dev/null
@@ -1,42 +0,0 @@
1package opts
2
3import (
4 "fmt"
5 "net"
6)
7
8// IPOpt holds an IP. It is used to store values from CLI flags.
9type IPOpt struct {
10 *net.IP
11}
12
13// NewIPOpt creates a new IPOpt from a reference net.IP and a
14// string representation of an IP. If the string is not a valid
15// IP it will fallback to the specified reference.
16func NewIPOpt(ref *net.IP, defaultVal string) *IPOpt {
17 o := &IPOpt{
18 IP: ref,
19 }
20 o.Set(defaultVal)
21 return o
22}
23
24// Set sets an IPv4 or IPv6 address from a given string. If the given
25// string is not parseable as an IP address it returns an error.
26func (o *IPOpt) Set(val string) error {
27 ip := net.ParseIP(val)
28 if ip == nil {
29 return fmt.Errorf("%s is not an ip address", val)
30 }
31 *o.IP = ip
32 return nil
33}
34
35// String returns the IP address stored in the IPOpt. If stored IP is a
36// nil pointer, it returns an empty string.
37func (o *IPOpt) String() string {
38 if *o.IP == nil {
39 return ""
40 }
41 return o.IP.String()
42}