diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-08-26 14:23:54 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-09-03 16:30:46 +0100 |
commit | f7f3087cc542d76f19ba6362b0837dcf1baf86b8 (patch) | |
tree | 8d2a920c16a2255f9e9ac57d2b333d8d01edc556 /src/tests/tests.c | |
parent | 43307b4e39300f6602a975bbb710b443e5fcd2b5 (diff) | |
download | ipxe-f7f3087cc542d76f19ba6362b0837dcf1baf86b8.tar.gz |
[ipv6] Replace IPv6 stack
Replace the existing partially-implemented IPv6 stack with a fresh
implementation.
This implementation is not yet complete. The IPv6 transmit and
receive datapaths are functional (including fragment reassembly and
parsing of arbitrary extension headers). NDP neighbour solicitations
and advertisements are supported. ICMPv6 echo is supported.
At present, only link-local addresses may be used, and there is no way
to specify an IPv6 address as part of a URI (either directly or via
a DNS lookup).
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/tests/tests.c')
-rw-r--r-- | src/tests/tests.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/tests.c b/src/tests/tests.c index f965e6e3c..17e22a3a5 100644 --- a/src/tests/tests.c +++ b/src/tests/tests.c @@ -36,6 +36,7 @@ REQUIRE_OBJECT ( base16_test ); REQUIRE_OBJECT ( settings_test ); REQUIRE_OBJECT ( time_test ); REQUIRE_OBJECT ( tcpip_test ); +REQUIRE_OBJECT ( ipv6_test ); REQUIRE_OBJECT ( crc32_test ); REQUIRE_OBJECT ( md5_test ); REQUIRE_OBJECT ( sha1_test ); |