-
Notifications
You must be signed in to change notification settings - Fork 165
[mdns]: Refactor stage #1 #776
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
bb5e9fc
83a59da
6502567
a569c63
d50d89c
ff5cef6
62bd747
21a5dc5
28128a8
3e5946a
acd3c13
2005f3f
2b15776
0bd74cb
6db95af
0974c6b
afbec7d
d847677
7330f78
c41424e
1738b70
48fef6f
582d2e4
ed87fa2
6b5fb91
4379c7e
c42b578
086cd3c
6664b88
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,6 +142,20 @@ menu "mDNS" | |
help | ||
Enable for the library to log received and sent mDNS packets to stdout. | ||
|
||
config MDNS_DEBUG_USE_ESP_LOG | ||
bool "Route debug prints to ESP_LOG" | ||
depends on MDNS_ENABLE_DEBUG_PRINTS | ||
default y | ||
help | ||
Enable this option to route debug prints to ESP_LOG, which allows more flexibility. | ||
|
||
config MDNS_DEBUG_BUFFER_SIZE | ||
int "Size of temporary buffer for debug prints" | ||
depends on MDNS_DEBUG_USE_ESP_LOG | ||
default 1024 | ||
help | ||
This buffer is used to output mDNS packets in debug prints. | ||
|
||
config MDNS_ENABLE_CONSOLE_CLI | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this option defaults to y? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's also Why? This option was added by a public contributor, before it was simply built unconditionally -- so the compatibility reasons. |
||
bool "Enable Command Line Interface on device console" | ||
default y | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this path
exit 0
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is still a failure -- fuzzer returns another error code.