blob: c8fd9977da034632902ed7764165f24f880a5192 [file] [log] [blame]
/* main.c - mDNS responder */
/*
* Copyright (c) 2017 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(net_mdns_responder_sample, LOG_LEVEL_DBG);
#include <zephyr/kernel.h>
#include <zephyr/net/net_core.h>
extern void service(void);
/* Note that this application does not do anything itself.
* It is just a placeholder for waiting mDNS queries.
*/
void main(void)
{
LOG_INF("Waiting mDNS queries...");
service();
}