Documentation ¶
Index ¶
- func Address(listener net.Listener) string
- func Dial(addr string, timeout time.Duration) error
- func GetIPs() (ips []string)
- func GetLocalIP() (string, error)
- func GetLocalMainIP() (string, int, error)
- func GetMacAddrs() (macAddrs []string)
- func LocalListener() net.Listener
- func Ping(host string, port int) error
- type URL
- func (u *URL) Password() (string, bool)
- func (u *URL) Query() url.Values
- func (u *URL) QueryBool(field string, expect bool) (ret bool)
- func (u *URL) QueryDuration(field string, expect time.Duration) (ret time.Duration)
- func (u *URL) QueryInt(field string, expect int) (ret int)
- func (u *URL) QueryInt64(field string, expect int64) (ret int64)
- func (u *URL) QueryString(field string, expect string) (ret string)
- func (u *URL) Username() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type URL ¶
type URL struct { Scheme string Opaque string // encoded opaque data User *url.Userinfo // username and password information Host string // host or host:port Path string // path (relative paths may omit leading slash) RawPath string // encoded path hint (see EscapedPath method) ForceQuery bool // append a query ('?') even if RawQuery is empty RawQuery string // encoded query values, without '?' Fragment string // fragment for references, without '#' HostName string Port string // contains filtered or unexported fields }
URL wrap url.URL.
func (*URL) Query ¶ added in v0.2.0
Query parses RawQuery and returns the corresponding values. It silently discards malformed value pairs. To check errors use ParseQuery.
func (*URL) QueryBool ¶ added in v0.2.0
QueryBool returns provided field's value in bool if value is empty, expect returns
func (*URL) QueryDuration ¶
QueryDuration returns provided field's value in duration type. if value is empty, expect returns
func (*URL) QueryInt ¶
QueryInt returns provided field's value in int type. if value is empty, expect returns
func (*URL) QueryInt64 ¶
QueryInt64 returns provided field's value in int64 type. if value is empty, expect returns
func (*URL) QueryString ¶
QueryString returns provided field's value in string type. if value is empty, expect returns
Click to show internal directories.
Click to hide internal directories.