func net.ParseIP
17 uses
net (current package)
dnsclient.go#L34: ip := ParseIP(addr)
dnsclient_unix.go#L593: if ip := ParseIP(haddr); ip != nil {
ip.go#L380: x := ParseIP(s)
ip.go#L527: func ParseIP(s string) IP {
ipsock_posix.go#L50: {laddr: TCPAddr{IP: ParseIP("::1")}, value: 1},
net/http
cookie.go#L422: if net.ParseIP(v) != nil && !strings.Contains(v, ":") {
socks_bundle.go#L92: if ip := net.ParseIP(host); ip != nil {
socks_bundle.go#L410: a.IP = net.ParseIP(host)
crypto/tls
handshake_client.go#L1303: if net.ParseIP(host) != nil {
crypto/x509
parser.go#L644: if net.ParseIP(domain) != nil {
verify.go#L118: if ip := net.ParseIP(h.Host); ip != nil {
verify.go#L942: if ip := net.ParseIP(candidateIP); ip != nil {
github.com/gotd/neo
net.go#L179: if a.IP = net.ParseIP(host); a.IP == nil {
github.com/refraction-networking/utls
handshake_client.go#L1353: if net.ParseIP(host) != nil {
golang.org/x/net/internal/socks
client.go#L86: if ip := net.ParseIP(host); ip != nil {
socks.go#L254: a.IP = net.ParseIP(host)
vendor/golang.org/x/net/http/httpproxy
proxy.go#L247: if pip := net.ParseIP(phost); pip != nil {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |