-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zone Index is discarded for IPv4-mapped IPv6 (transitional) addresses #79
Comments
Something about the transitional regexp not matching the zoneId. Now if only I knew what |
I think I fixed it but I'm trying to figure out where to add a unit test for this one. |
And |
Here's my version of the fix, but go ahead and commit/PR yours: else if match = string.match(ipv6Regexes['transitional'])
- addr = expandIPv6(match[1][0..-2], 6)
+ addr = expandIPv6(match[1][0..-2] + (match[6] || ''), 6)
if addr.parts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Zone Index is discarded for IPv4-mapped IPv6 (transitional) addresses
cc: @silverwind
The text was updated successfully, but these errors were encountered: