mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-14 00:11:28 +05:30
6f4b0a7c06
* fetch credentials for server with matching hostname if scheme, path, or port are not provided * if the credential request includes specific scheme, path, or port that does not match entry, don't return * extract url helpers into a package Signed-off-by: Emily Casey <ecasey@pivotal.io> Signed-off-by: Danny Joyce <djoyce@pivotal.io>
16 lines
179 B
Go
16 lines
179 B
Go
//+build go1.8
|
|
|
|
package registryurl
|
|
|
|
import (
|
|
url "net/url"
|
|
)
|
|
|
|
func GetHostname(u *url.URL) string {
|
|
return u.Hostname()
|
|
}
|
|
|
|
func GetPort(u *url.URL) string {
|
|
return u.Port()
|
|
}
|