Bug fixed: Adjust the super header length to 8192 for all client implementation

This commit is contained in:
lionsoul
2017-10-21 12:47:24 +08:00
parent eab6259b13
commit 5f3bddec08
8 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ class Ip2Region(object):
#pass the super block
self.__f.seek(8)
#read the header block
b = self.__f.read(4086)
b = self.__f.read(8192)
#parse the header block
sip = None
ptr = None