mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-01 23:07:40 +00:00
Upgraded from 99c19923, branch release-3.0. This required fetching or upgrading the following: * k8s.io/api to kubernetes-1.9.1 * k8s.io/apimachinery to kubernetes-1.9.1 * github.com/juju/ratelimit to 1.0.1 * github.com/spf13/pflag to 4c012f6d Also, update Scope's imports/function calls to be compatible with the new client.
25 lines
494 B
Go
25 lines
494 B
Go
package swag
|
|
|
|
import (
|
|
"net"
|
|
"strconv"
|
|
)
|
|
|
|
// SplitHostPort splits a network address into a host and a port.
|
|
// The port is -1 when there is no port to be found
|
|
func SplitHostPort(addr string) (host string, port int, err error) {
|
|
h, p, err := net.SplitHostPort(addr)
|
|
if err != nil {
|
|
return "", -1, err
|
|
}
|
|
if p == "" {
|
|
return "", -1, &net.AddrError{Err: "missing port in address", Addr: addr}
|
|
}
|
|
|
|
pi, err := strconv.Atoi(p)
|
|
if err != nil {
|
|
return "", -1, err
|
|
}
|
|
return h, pi, nil
|
|
}
|