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:
authorDavid Crocker <dcrocker@eschertech.com>2020-03-08 17:34:33 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-03-08 17:34:33 +0300
commit8586a96c969594bd31cc9b2275e54b41e179a74b (patch)
tree1c86b648603be7ecba036c8efda7e8b48a66fab0 /src/Networking/LwipEthernet/Lwip
parentfe81ce8d292a5e9ed45c9a76e8bc9b9c3e75fb2e (diff)
Bug fixes and refactoring
Tightened up JSON path parsing Used NamedEnum for GCodeChannel and Compatibility Added a check for bad channel numbers received from SBC Fixed bugs in M220 Increased max number of MDNS services form 1 to 4 Added noexcept specifiers to functions in DataTransfer class
Diffstat (limited to 'src/Networking/LwipEthernet/Lwip')
-rw-r--r--src/Networking/LwipEthernet/Lwip/lwipopts.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Networking/LwipEthernet/Lwip/lwipopts.h b/src/Networking/LwipEthernet/Lwip/lwipopts.h
index c2c683c6..ee4eaba2 100644
--- a/src/Networking/LwipEthernet/Lwip/lwipopts.h
+++ b/src/Networking/LwipEthernet/Lwip/lwipopts.h
@@ -266,6 +266,10 @@ extern uint32_t trueRandom(void);
*/
#define LWIP_NETIF_HOSTNAME 1
+/** The maximum number of services per netif */
+#define MDNS_MAX_SERVICES 4
+
+
/*
------------------------------------
---------- Thread options ----------