From 2a6d966aa16047420508c35afd863ae67c4ae52e Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 9 Nov 2024 12:38:01 +0100 Subject: [PATCH] Use "MiniDexed" as the mDNS-SD service name --- src/minidexed.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index c210536..5059ea0 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -2219,7 +2219,7 @@ void CMiniDexed::UpdateNetwork() CmDNSPublisher *pmDNSPublisher = new CmDNSPublisher (m_pNet); assert (pmDNSPublisher); - static const char ServiceName[] = "minidexed-rtpmidi"; + static const char ServiceName[] = "MiniDexed"; static const char *ppText[] = {"RTP-MIDI Receiver", nullptr}; // TXT record strings if (!pmDNSPublisher->PublishService (ServiceName, CmDNSPublisher::ServiceTypeAppleMIDI, 5004, ppText)) @@ -2284,4 +2284,4 @@ bool CMiniDexed::InitNetwork() m_pNetDevice = CNetDevice::GetNetDevice(NetDeviceType); } return m_pNet != nullptr; -} \ No newline at end of file +}