From 456ce952f2ba8e6cb9c63ee211b2fa7db49d9529 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Fri, 9 Oct 2020 13:30:45 -0700 Subject: Fix bug in parsing IPv6 addresses Fix bug where an IPv6 address ending in a double-colon was not considered valid (it was being considered as truncated). --- 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 e012627..df87093 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -733,6 +733,7 @@ TEST(UriTests, IPv6Address) { {"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}, + {"http://[2001:db8:85a3:8a2e::]/", "2001:db8:85a3:8a2e::", true}, // invalid {"http://[::fFfF::1]", "", false}, -- cgit v1.2.3