github.com/gotd/td/mtproxy/obfuscator.Conn.RemoteAddr (method, view implemented interface methods)

20 uses

	github.com/coder/websocket
		netconn_notjs.go#L9: 		return unc.RemoteAddr()

	github.com/refraction-networking/utls
		conn.go#L140: 	return c.conn.RemoteAddr()
		handshake_client.go#L1337: 		return c.conn.RemoteAddr().String()

	crypto/tls
		conn.go#L137: 	return c.conn.RemoteAddr()
		handshake_client.go#L1287: 		return c.conn.RemoteAddr().String()

	net
		net.go#L145: 	RemoteAddr() Addr

	net/http
		h2_bundle.go#L4420: 		remoteAddrStr:               c.RemoteAddr().String(),
		h2_bundle.go#L4913: 		sc.vlogf("http2: server connection from %v on %p", sc.conn.RemoteAddr(), sc.hs)
		h2_bundle.go#L4938: 		sc.condlogf(err, "http2: server: error reading preface from client %v: %v", sc.conn.RemoteAddr(), err)
		h2_bundle.go#L5005: 					sc.logf("timeout waiting for SETTINGS frames from %v", sc.conn.RemoteAddr())
		h2_bundle.go#L5013: 					sc.vlogf("GOAWAY close timer fired; closing conn from %v", sc.conn.RemoteAddr())
		h2_bundle.go#L5136: 				sc.vlogf("http2: server: client %v said hello", sc.conn.RemoteAddr())
		h2_bundle.go#L5554: 		sc.logf("http2: server connection error from %v: %v", sc.conn.RemoteAddr(), ev)
		h2_bundle.go#L5559: 			sc.vlogf("http2: server closing client connection; error reading frame from client %s: %v", sc.conn.RemoteAddr(), err)
		h2_bundle.go#L6406: 				sc.logf("http2: panic serving %v: %v\n%s", sc.conn.RemoteAddr(), e, buf)
		h2_bundle.go#L8111: 		t.vlogf("http2: Transport creating client conn %p to %v", cc, c.RemoteAddr())
		server.go#L1898: 	if ra := c.rwc.RemoteAddr(); ra != nil {
		server.go#L1943: 			c.server.logf("http: TLS handshake error from %s: %v", c.rwc.RemoteAddr(), reason)
		server.go#L2134: 		req.RemoteAddr = h.c.RemoteAddr().String()
		transport.go#L1837: 		d := socksNewDialer("tcp", conn.RemoteAddr().String())