1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 04:07:34 +00:00

AK: Add IPv6Address class

This is the IPv6 counter part to the IPv4Address class and implements
parsing strings into a in6_addr and formatting one as a string. It
supports the address compression scheme as well as IPv4 mapped
addresses.
This commit is contained in:
Tom 2022-02-18 20:11:02 -07:00 committed by Linus Groh
parent f235f08e6d
commit 2f0e3da142
3 changed files with 421 additions and 0 deletions

View file

@ -32,6 +32,7 @@ set(AK_TEST_SOURCES
TestHashTable.cpp
TestHex.cpp
TestIPv4Address.cpp
TestIPv6Address.cpp
TestIndexSequence.cpp
TestIntegerMath.cpp
TestIntrusiveList.cpp