net/http.loggingConn.RemoteAddr (method, view implemented interface methods)

17 uses

	net/http (current package)
		h2_bundle.go#L3939: 		remoteAddrStr:               c.RemoteAddr().String(),
		h2_bundle.go#L4385: 		sc.vlogf("http2: server connection from %v on %p", sc.conn.RemoteAddr(), sc.hs)
		h2_bundle.go#L4405: 		sc.condlogf(err, "http2: server: error reading preface from client %v: %v", sc.conn.RemoteAddr(), err)
		h2_bundle.go#L4455: 					sc.logf("timeout waiting for SETTINGS frames from %v", sc.conn.RemoteAddr())
		h2_bundle.go#L4461: 					sc.vlogf("GOAWAY close timer fired; closing conn from %v", sc.conn.RemoteAddr())
		h2_bundle.go#L4552: 				sc.vlogf("http2: server: client %v said hello", sc.conn.RemoteAddr())
		h2_bundle.go#L4953: 		sc.logf("http2: server connection error from %v: %v", sc.conn.RemoteAddr(), ev)
		h2_bundle.go#L4958: 			sc.vlogf("http2: server closing client connection; error reading frame from client %s: %v", sc.conn.RemoteAddr(), err)
		h2_bundle.go#L5717: 				sc.logf("http2: panic serving %v: %v\n%s", sc.conn.RemoteAddr(), e, buf)
		h2_bundle.go#L7163: 		t.vlogf("http2: Transport creating client conn %p to %v", cc, c.RemoteAddr())
		server.go#L1818: 	c.remoteAddr = c.rwc.RemoteAddr().String()
		server.go#L1849: 			c.server.logf("http: TLS handshake error from %s: %v", c.rwc.RemoteAddr(), err)
		transport.go#L1622: 		d := socksNewDialer("tcp", conn.RemoteAddr().String())

	net
		net.go#L132: 	RemoteAddr() Addr

	crypto/tls
		conn.go#L130: 	return c.conn.RemoteAddr()
		handshake_client.go#L255: 	cacheKey = clientSessionCacheKey(c.conn.RemoteAddr(), c.config)
		handshake_client_tls13.go#L681: 	cacheKey := clientSessionCacheKey(c.conn.RemoteAddr(), c.config)