File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,13 @@ menu "mDNS"
27
27
higher than priorities of system tasks. Compile time warning/error
28
28
would be emitted if the chosen task priority were too high.
29
29
30
+ config MDNS_ACTION_QUEUE_LEN
31
+ int "Maximum actions pending to the server"
32
+ range 8 64
33
+ default 16
34
+ help
35
+ Allows setting the length of mDNS action queue.
36
+
30
37
config MDNS_TASK_STACK_SIZE
31
38
int "mDNS task stack size"
32
39
default 4096
Original file line number Diff line number Diff line change 93
93
#define MDNS_SERVICE_ADD_TIMEOUT_MS CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS
94
94
95
95
#define MDNS_PACKET_QUEUE_LEN 16 // Maximum packets that can be queued for parsing
96
- #define MDNS_ACTION_QUEUE_LEN 16 // Maximum actions pending to the server
96
+ #define MDNS_ACTION_QUEUE_LEN CONFIG_MDNS_ACTION_QUEUE_LEN // Maximum actions pending to the server
97
97
#define MDNS_TXT_MAX_LEN 1024 // Maximum string length of text data in TXT record
98
98
#if defined(CONFIG_LWIP_IPV6 ) && defined(CONFIG_MDNS_RESPOND_REVERSE_QUERIES )
99
99
#define MDNS_NAME_MAX_LEN (64+4) // Need to account for IPv6 reverse queries (64 char address + ".ip6" )
Original file line number Diff line number Diff line change 1
1
/*
2
- * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
2
+ * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
3
3
*
4
4
* SPDX-License-Identifier: Unlicense OR CC0-1.0
5
5
*/
290
290
#define CONFIG_MDNS_MAX_SERVICES 25
291
291
#define CONFIG_MDNS_MAX_INTERFACES 3
292
292
#define CONFIG_MDNS_TASK_PRIORITY 1
293
+ #define CONFIG_MDNS_ACTION_QUEUE_LEN 16
293
294
#define CONFIG_MDNS_TASK_STACK_SIZE 4096
294
295
#define CONFIG_MDNS_TASK_AFFINITY_CPU0 1
295
296
#define CONFIG_MDNS_TASK_AFFINITY 0x0
You can’t perform that action at this time.
0 commit comments