mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
net/mld: Add basic build structure for Multicast Listener Discovery (MLD). No real MLD logic yet. Only a few hooks to capture and dispatch MLD ICMPv6 packets.
This commit is contained in:
@@ -71,9 +71,9 @@
|
||||
#define ICMPv6_RESERVED_ERROR_MSG 127
|
||||
#define ICMPv6_ECHO_REQUEST 128
|
||||
#define ICMPv6_ECHO_REPLY 129
|
||||
#define ICMPV6_MCAST_LISTEN_QUERY 130 /* RFC 2710 */
|
||||
#define ICMPV6_MCAST_LISTEN_REPORT 131
|
||||
#define ICMPV6_MCAST_LISTEN_DONE 132
|
||||
#define ICMPV6_MCAST_LISTEN_QUERY 130 /* RFC 2710 and 3810 */
|
||||
#define ICMPV6_MCAST_LISTEN_REPORT_V1 131 /* RFC 2710 */
|
||||
#define ICMPV6_MCAST_LISTEN_DONE_V1 132 /* RFC 2710 */
|
||||
#define ICMPV6_ROUTER_SOLICIT 133 /* RFC 4861 */
|
||||
#define ICMPV6_ROUTER_ADVERTISE 134
|
||||
#define ICMPv6_NEIGHBOR_SOLICIT 135
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* include/nuttx/net/mld.h
|
||||
* Multicast Listener Discovery (MLD) Definitions
|
||||
*
|
||||
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
||||
Reference in New Issue
Block a user