diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-10-22 23:39:29 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-10-23 14:07:56 +0100 |
commit | 2dca2e6ade6ed89029b2812a0a6f07276cdace76 (patch) | |
tree | a761ba75bbd11190cceb8b1ebb25f7463b4fad4c /src/include/ipxe/icmpv6.h | |
parent | 595e32d7abca1292c2b2a0cfebf50e31eb287676 (diff) | |
download | ipxe-2dca2e6ade6ed89029b2812a0a6f07276cdace76.tar.gz |
[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.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/ipxe/icmpv6.h b/src/include/ipxe/icmpv6.h index c09a71a02..15f8edd83 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; |