From 87ae5a9f02cefc51fb24305ec79d37e4da40c4f0 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Fri, 9 Oct 2020 13:28:01 -0700 Subject: Fix bug in IPv6 address parsing Fix bug where IPv6 address ending in a group with only digits followed by a double-colon would not get parsed correctly --- test/src/UriTests.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'test/src') diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp index 2fec3a0..e012627 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -731,6 +731,7 @@ TEST(UriTests, IPv6Address) { {"http://[::ffff:1.2.3.4]/", "::ffff:1.2.3.4", true}, {"http://[2001:db8:85a3:8d3:1319:8a2e:370:7348]/", "2001:db8:85a3:8d3:1319:8a2e:370:7348", true}, {"http://[fFfF::1]", "fFfF::1", true}, + {"http://[1234::1]", "1234::1", true}, {"http://[fFfF:1:2:3:4:5:6:a]", "fFfF:1:2:3:4:5:6:a", true}, // invalid -- cgit v1.2.3