aboutsummaryrefslogtreecommitdiff
path: root/src/include/ipxe/icmpv6.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2013-10-22 23:39:29 +0100
committerMichael Brown <mcb30@ipxe.org>2013-10-23 14:07:56 +0100
commit2dca2e6ade6ed89029b2812a0a6f07276cdace76 (patch)
treea761ba75bbd11190cceb8b1ebb25f7463b4fad4c /src/include/ipxe/icmpv6.h
parent595e32d7abca1292c2b2a0cfebf50e31eb287676 (diff)
downloadipxe-2dca2e6ade6ed89029b2812a0a6f07276cdace76.zip
ipxe-2dca2e6ade6ed89029b2812a0a6f07276cdace76.tar.gz
ipxe-2dca2e6ade6ed89029b2812a0a6f07276cdace76.tar.bz2
[ipv6] Extract link layer addresses from router advertisements
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/icmpv6.h')
-rw-r--r--src/include/ipxe/icmpv6.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/ipxe/icmpv6.h b/src/include/ipxe/icmpv6.h
index c09a71a..15f8edd 100644
--- a/src/include/ipxe/icmpv6.h
+++ b/src/include/ipxe/icmpv6.h
@@ -46,11 +46,14 @@ struct icmpv6_handler {
/** ICMPv6 echo reply */
#define ICMPV6_ECHO_REPLY 129
+/** ICMPv6 router advertisement */
+#define ICMPV6_ROUTER_ADVERTISEMENT 134
+
/** ICMPv6 neighbour solicitation */
-#define ICMPV6_NDP_NEIGHBOUR_SOLICITATION 135
+#define ICMPV6_NEIGHBOUR_SOLICITATION 135
/** ICMPv6 neighbour advertisement */
-#define ICMPV6_NDP_NEIGHBOUR_ADVERTISEMENT 136
+#define ICMPV6_NEIGHBOUR_ADVERTISEMENT 136
extern struct tcpip_protocol icmpv6_protocol __tcpip_protocol;