mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2025-12-10 08:46:40 +08:00
Fix options #include in mdns code
This commit is contained in:
parent
482a4d2ce9
commit
ab72ed8517
@ -1,6 +1,27 @@
|
|||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* MDNS responder implementation
|
* 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/apps/mdns.h"
|
||||||
#include "lwip/netif.h"
|
#include "lwip/netif.h"
|
||||||
#include "lwip/udp.h"
|
#include "lwip/udp.h"
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
#ifndef LWIP_HDR_MDNS_H
|
#ifndef LWIP_HDR_MDNS_H
|
||||||
#define LWIP_HDR_MDNS_H
|
#define LWIP_HDR_MDNS_H
|
||||||
|
|
||||||
#include "lwip/opt.h"
|
#include "lwip/apps/mdns_opts.h"
|
||||||
#include "lwip/netif.h"
|
#include "lwip/netif.h"
|
||||||
|
|
||||||
#if LWIP_MDNS
|
#if LWIP_MDNS
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user