We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I use
plugins/pkg/ip/cidr.go
Lines 23 to 26 in 7e9ada5
[2]
[0,0,0,2]
This is because intToIP does not obey the byte length of IPv4(4)/IPv6(16) when first byte is 0.
intToIP
Lines 51 to 53 in 7e9ada5
This bug will happen when first byte is 0 no matter family is IPv4 or IPv6.
The text was updated successfully, but these errors were encountered:
Fixed by #782
Sorry, something went wrong.
/close
No branches or pull requests
When I use
plugins/pkg/ip/cidr.go
Lines 23 to 26 in 7e9ada5
[2]
but not an expected one[0,0,0,2]
.This is because
intToIP
does not obey the byte length of IPv4(4)/IPv6(16) when first byte is 0.plugins/pkg/ip/cidr.go
Lines 51 to 53 in 7e9ada5
This bug will happen when first byte is 0 no matter family is IPv4 or IPv6.
The text was updated successfully, but these errors were encountered: