blob: 676f8499cd1d61d7e58952be108b064d3424721c [file] [log] [blame]
/* main.c - mDNS responder */
/*
* Copyright (c) 2017 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#define LOG_MODULE_NAME net_mdns_responder_app
#define NET_LOG_LEVEL LOG_LEVEL_DBG
#include <zephyr.h>
#include <net/net_core.h>
/* Note that this application does not do anything itself.
* It is just a placeholder for waiting mDNS queries.
*/
void main(void)
{
NET_INFO("Waiting mDNS queries...");
}