文件名称:main
介绍说明--下载内容均来自于网络,请自行研究使用
纯真版IP数据库查询代码原源代码中有一个错误导致取出的地区信息有误
在readFullAddr函数中
if ( byte == REDIRECT_MODE_2 ) {
int p = 0
fread(&p,1,3,dbfile)
address = readString(p)
fseek(dbfile,p+4,SEEK_SET)
这段中
最后一句fseek(dbfile,p+4,SEEK_SET)
应改为
fseek(dbfile,countryOffset+4,SEEK_SET)
否则取出的区域地址将会是国家地址的略过4个字符后的内容
比如原来应该取出 “中国上海 电信adsl”
现在会变成 “中国上海 上海”
现在发布的是经过我改动后的版本
bug信息已经通知原作者并且他已经作了修复-Pure IP database query code version of the original source code has an error out of the region led to an error in the information readFullAddr function if (byte == REDIRECT_MODE_2) (int p = 0 fread (
在readFullAddr函数中
if ( byte == REDIRECT_MODE_2 ) {
int p = 0
fread(&p,1,3,dbfile)
address = readString(p)
fseek(dbfile,p+4,SEEK_SET)
这段中
最后一句fseek(dbfile,p+4,SEEK_SET)
应改为
fseek(dbfile,countryOffset+4,SEEK_SET)
否则取出的区域地址将会是国家地址的略过4个字符后的内容
比如原来应该取出 “中国上海 电信adsl”
现在会变成 “中国上海 上海”
现在发布的是经过我改动后的版本
bug信息已经通知原作者并且他已经作了修复-Pure IP database query code version of the original source code has an error out of the region led to an error in the information readFullAddr function if (byte == REDIRECT_MODE_2) (int p = 0 fread (
(系统自动生成,下载前可以参看下载内容)
下载文件列表
main.cpp