blob: 3144e0e866f79b2017ca794f2f918f0ccc9fbd2d [file] [log] [blame]
/* main.c - mDNS responder */
/*
* Copyright (c) 2017 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#if 1
#define SYS_LOG_DOMAIN "mdns-responder"
#define NET_SYS_LOG_LEVEL SYS_LOG_LEVEL_DEBUG
#define NET_LOG_ENABLED 1
#endif
#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...");
}