diff --git a/src/apps/mdns/mdns.c b/src/apps/mdns/mdns.c index 6fc10e62..7e79d0ae 100644 --- a/src/apps/mdns/mdns.c +++ b/src/apps/mdns/mdns.c @@ -14,11 +14,11 @@ * ------------------------- * * - Tiebreaking for simultaneous probing + * - Correct announcing method * - Sending goodbye messages (zero ttl) - shutdown, DHCP lease about to expire, DHCP turned off... - * - Checking that source address of unicast requests are on the same network - * - Limiting multicast responses to 1 per second per resource record + * - Sending negative responses NSEC * - Fragmenting replies if required - * - Handling multi-packet known answers + * - Handling multi-packet known answers (TC bit) * - Individual known answer detection for all local IPv6 addresses * - Dynamic size of outgoing packet */ @@ -52,6 +52,7 @@ * This file is part of the lwIP TCP/IP stack. * * Author: Erik Ekman + * Author: Jasper Verschueren * */ diff --git a/src/include/lwip/apps/mdns.h b/src/include/lwip/apps/mdns.h index 7550ff10..077bd45d 100644 --- a/src/include/lwip/apps/mdns.h +++ b/src/include/lwip/apps/mdns.h @@ -32,6 +32,7 @@ * This file is part of the lwIP TCP/IP stack. * * Author: Erik Ekman + * Author: Jasper Verschueren * */ diff --git a/src/include/lwip/apps/mdns_opts.h b/src/include/lwip/apps/mdns_opts.h index ac232200..d805e8c7 100644 --- a/src/include/lwip/apps/mdns_opts.h +++ b/src/include/lwip/apps/mdns_opts.h @@ -32,6 +32,7 @@ * This file is part of the lwIP TCP/IP stack. * * Author: Erik Ekman + * Author: Jasper Verschueren * */ diff --git a/src/include/lwip/apps/mdns_priv.h b/src/include/lwip/apps/mdns_priv.h index c9784466..23f015dd 100644 --- a/src/include/lwip/apps/mdns_priv.h +++ b/src/include/lwip/apps/mdns_priv.h @@ -32,6 +32,7 @@ * This file is part of the lwIP TCP/IP stack. * * Author: Erik Ekman + * Author: Jasper Verschueren * */ #ifndef LWIP_HDR_MDNS_PRIV_H