blob: ebf2f7ce2217f292e4f9b59c9ab3c12cdb853974 [file] [log] [blame]
/* main.c - mDNS responder */
/*
* Copyright (c) 2017 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <logging/log.h>
LOG_MODULE_REGISTER(net_mdns_responder_sample, 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)
{
LOG_INF("Waiting mDNS queries...");
}