net.Conn.RemoteAddr (method)

16 uses

	net (current package)
		net.go#L138: 	RemoteAddr() Addr

	net/http
		h2_bundle.go#L4278: 		remoteAddrStr:               c.RemoteAddr().String(),
		h2_bundle.go#L4768: 		sc.vlogf("http2: server connection from %v on %p", sc.conn.RemoteAddr(), sc.hs)
		h2_bundle.go#L4789: 		sc.condlogf(err, "http2: server: error reading preface from client %v: %v", sc.conn.RemoteAddr(), err)
		h2_bundle.go#L4848: 					sc.logf("timeout waiting for SETTINGS frames from %v", sc.conn.RemoteAddr())
		h2_bundle.go#L4854: 					sc.vlogf("GOAWAY close timer fired; closing conn from %v", sc.conn.RemoteAddr())
		h2_bundle.go#L4945: 				sc.vlogf("http2: server: client %v said hello", sc.conn.RemoteAddr())
		h2_bundle.go#L5363: 		sc.logf("http2: server connection error from %v: %v", sc.conn.RemoteAddr(), ev)
		h2_bundle.go#L5368: 			sc.vlogf("http2: server closing client connection; error reading frame from client %s: %v", sc.conn.RemoteAddr(), err)
		h2_bundle.go#L6243: 				sc.logf("http2: panic serving %v: %v\n%s", sc.conn.RemoteAddr(), e, buf)
		h2_bundle.go#L7938: 		t.vlogf("http2: Transport creating client conn %p to %v", cc, c.RemoteAddr())
		server.go#L1938: 	if ra := c.rwc.RemoteAddr(); ra != nil {
		server.go#L1983: 			c.server.logf("http: TLS handshake error from %s: %v", c.rwc.RemoteAddr(), reason)
		transport.go#L1750: 		d := socksNewDialer("tcp", conn.RemoteAddr().String())

	crypto/tls
		conn.go#L139: 	return c.conn.RemoteAddr()
		handshake_client.go#L1252: 		return c.conn.RemoteAddr().String()