From 95700b15e922f499cd3f8ea533745b97ff57a4f5 Mon Sep 17 00:00:00 2001 From: Martin <7252614+Unnvaldr@users.noreply.github.com> Date: Mon, 2 Feb 2026 13:03:34 +0100 Subject: [PATCH] Send external_ip config property to clients --- src/nvhttp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nvhttp.cpp b/src/nvhttp.cpp index ef5f6fe88..0bd881f00 100644 --- a/src/nvhttp.cpp +++ b/src/nvhttp.cpp @@ -958,6 +958,8 @@ namespace nvhttp { tree.put("root.LocalIP", net::addr_to_normalized_string(local_endpoint.address())); } + tree.put("root.ExternalIP", config::nvhttp.external_ip); + uint32_t codec_mode_flags = SCM_H264; if (video::last_encoder_probe_supported_yuv444_for_codec[0]) { codec_mode_flags |= SCM_H264_HIGH8_444;