This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from 8ff533beb examples/posix_stdio: Fix Kconfig to define default stack size new 30b1c024a apps/netutils: add mdns library support new f0eb00ffd examples: add mdnsd example application to accompany netutils/mdns library The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: examples/mdnsd/Kconfig | 32 ++++ {benchmarks/fio => examples/mdnsd}/Make.defs | 6 +- examples/{ajoystick => mdnsd}/Makefile | 14 +- .../foc_utils.h => examples/mdnsd/mdnsd_daemon.c | 84 +++++----- .../{dhcpd/dhcpd_daemon.h => mdnsd/mdnsd_daemon.h} | 10 +- examples/{dhcpd/target.c => mdnsd/mdnsd_start.c} | 9 +- .../{dhcpd/dhcpd_stop.c => mdnsd/mdnsd_stop.c} | 9 +- .../dhcpd_daemon.h => include/netutils/mdnsd.h | 11 +- netutils/mdns/Kconfig | 81 +++++++++ {builtin => netutils/mdns}/Make.defs | 6 +- netutils/mdns/Makefile | 106 ++++++++++++ netutils/mdns/mdnsd.c | 182 +++++++++++++++++++++ netutils/mdns/verbose_option.patch | 16 ++ 13 files changed, 497 insertions(+), 69 deletions(-) create mode 100644 examples/mdnsd/Kconfig copy {benchmarks/fio => examples/mdnsd}/Make.defs (89%) copy examples/{ajoystick => mdnsd}/Makefile (83%) copy include/industry/foc/foc_utils.h => examples/mdnsd/mdnsd_daemon.c (70%) copy examples/{dhcpd/dhcpd_daemon.h => mdnsd/mdnsd_daemon.h} (88%) copy examples/{dhcpd/target.c => mdnsd/mdnsd_start.c} (92%) copy examples/{dhcpd/dhcpd_stop.c => mdnsd/mdnsd_stop.c} (92%) copy examples/dhcpd/dhcpd_daemon.h => include/netutils/mdnsd.h (88%) create mode 100644 netutils/mdns/Kconfig copy {builtin => netutils/mdns}/Make.defs (90%) create mode 100644 netutils/mdns/Makefile create mode 100644 netutils/mdns/mdnsd.c create mode 100644 netutils/mdns/verbose_option.patch