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
以::FFFF:192.168.0.1为例,db.findInfo会抛出异常net.ipip.ipdb.IPFormatException: ipv4 format error
进一步检查会发现所有::开头的IPv6地址都无法被正确解析
应该是因为Read.java,find方法,90行这个判断条件的问题: if (addr.indexOf(":") > 0)
if (addr.indexOf(":") > 0)
所有::开头的IPv6地址都会错过这个分支进入IPv4解析的分支里。。。
The text was updated successfully, but these errors were encountered:
@w0mTea IPv4-mapped IPv6 addresses目前不支持呢
Sorry, something went wrong.
No branches or pull requests
以::FFFF:192.168.0.1为例,db.findInfo会抛出异常net.ipip.ipdb.IPFormatException: ipv4 format error
进一步检查会发现所有::开头的IPv6地址都无法被正确解析
应该是因为Read.java,find方法,90行这个判断条件的问题:
if (addr.indexOf(":") > 0)
所有::开头的IPv6地址都会错过这个分支进入IPv4解析的分支里。。。
The text was updated successfully, but these errors were encountered: