Fix options #include in mdns code

This commit is contained in:
Dirk Ziegelmeier 2016-08-16 08:22:41 +02:00
parent 482a4d2ce9
commit ab72ed8517
2 changed files with 22 additions and 26 deletions

View File

@ -1,6 +1,27 @@
/**
* @file
* MDNS responder implementation
*
* @defgroup mdns MDNS
* @ingroup apps
*
* RFC 6762 - Multicast DNS\n
* RFC 6763 - DNS-Based Service Discovery\n
*
* @verbinclude mdns.txt
*
* Things left to implement:
* -------------------------
*
* - Probing/conflict resolution
* - Sending goodbye messages (zero ttl)
* - Checking that source address of unicast requests are on the same network
* - Limiting multicast responses to 1 per second per resource record
* - Fragmenting replies if required
* - Subscribe to netif address/link change events and act on them
* - Handling multi-packet known answers
* - Individual known answer detection for all local IPv6 addresses
* - Dynamic size of outgoing packet
*/
/*
@ -38,31 +59,6 @@
*
*/
/**
* @defgroup mdns MDNS
* @ingroup apps
*
* RFC 6762 - Multicast DNS\n
* RFC 6763 - DNS-Based Service Discovery\n
*
* @verbinclude mdns.txt
*
* Things left to implement:
* -------------------------
*
* - Probing/conflict resolution
* - Sending goodbye messages (zero ttl)
* - Checking that source address of unicast requests are on the same network
* - Limiting multicast responses to 1 per second per resource record
* - Fragmenting replies if required
* - Subscribe to netif address/link change events and act on them
* - Handling multi-packet known answers
* - Individual known answer detection for all local IPv6 addresses
* - Dynamic size of outgoing packet
*/
#include "lwip/opt.h"
#include "lwip/apps/mdns.h"
#include "lwip/netif.h"
#include "lwip/udp.h"

View File

@ -32,7 +32,7 @@
#ifndef LWIP_HDR_MDNS_H
#define LWIP_HDR_MDNS_H
#include "lwip/opt.h"
#include "lwip/apps/mdns_opts.h"
#include "lwip/netif.h"
#if LWIP_MDNS