As reported on stackoverflow, the IPv6 address 1111:2222:3333:4444:5555:6666::1.2.3.4 should be invalid because of double "::", but Ipv6.parse("1111:2222:3333:4444:5555:6666::1.2.3.4") is forgiving, parsing it to 1111:2222:3333:4444:5555:6666:102:304.
As reported on stackoverflow, the IPv6 address
1111:2222:3333:4444:5555:6666::1.2.3.4
should be invalid because of double "::", butIpv6.parse("1111:2222:3333:4444:5555:6666::1.2.3.4")
is forgiving, parsing it to1111:2222:3333:4444:5555:6666:102:304
.