From af2cf0739a0c712b5541459d149e918a0d768227 Mon Sep 17 00:00:00 2001 From: tftzee <49162693+rex-schilasky@users.noreply.github.com> Date: Wed, 7 Aug 2024 12:55:01 +0200 Subject: [PATCH] enable loopback for monitoring functionality --- ecal/core/src/monitoring/ecal_monitoring_impl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ecal/core/src/monitoring/ecal_monitoring_impl.cpp b/ecal/core/src/monitoring/ecal_monitoring_impl.cpp index 820df99694..f5fb5774fc 100644 --- a/ecal/core/src/monitoring/ecal_monitoring_impl.cpp +++ b/ecal/core/src/monitoring/ecal_monitoring_impl.cpp @@ -55,6 +55,9 @@ namespace eCAL { if (m_init) return; + // enable loopback to monitor process internal entities as well + eCAL::Util::EnableLoopback(true); + // get name of this host m_host_name = Process::GetHostName();