From 17d905a1ae150d56a57c85486d5d87ea7a27d47f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20=C5=9Eiar=20Baysal?= Date: Sat, 9 Nov 2024 21:10:07 +0100 Subject: [PATCH] continue publishing mdns after network connection reestablishes --- src/minidexed.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index ca4d671..78f8e69 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -1878,7 +1878,13 @@ void CMiniDexed::UpdateNetwork() } else if (m_bNetworkReady && bNetIsRunning) { + if (!m_pmDNSPublisher->PublishService (MDNSSERVICENAME, CmDNSPublisher::ServiceTypeAppleMIDI, + 5004)) + { + LOGPANIC ("Cannot publish mdns service"); + } LOGNOTE("Network connection reestablished."); + } }