Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Networking/Network.cpp')
-rw-r--r--src/Networking/Network.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Networking/Network.cpp b/src/Networking/Network.cpp
index 046ee636..0b6f60fe 100644
--- a/src/Networking/Network.cpp
+++ b/src/Networking/Network.cpp
@@ -531,6 +531,9 @@ void Network::Spin() noexcept
if (nr == nullptr)
{
nr = responders; // 'responders' can't be null at this point
+#if SUPPORT_MULTICAST_DISCOVERY
+ MulticastResponder::Spin();
+#endif
}
doneSomething = nr->Spin();
nr = nr->GetNext();