For people who are facing crashes, can you try this? Find this in protocoltreenode.py: Code: def readInt16(self,i,socketOnly=0): intTop = i.read(socketOnly); intBot = i.read(socketOnly); #Utilities.debug(str(intTop)+"------------"+str(intBot)); value = (intTop << 8) + intBot; return value; And replace with: Code: def readInt16(self,i,socketOnly=0): intTop = i.read(socketOnly); intBot = i.read(socketOnly); #Utilities.debug(str(intTop)+"------------"+str(intBot)); value = (intTop << 8) + intBot; if value is not None: return value; else: return "";
def readInt16(self,i,socketOnly=0): intTop = i.read(socketOnly); intBot = i.read(socketOnly); #Utilities.debug(str(intTop)+"------------"+str(intBot)); value = (intTop << 8) + intBot; return value;
def readInt16(self,i,socketOnly=0): intTop = i.read(socketOnly); intBot = i.read(socketOnly); #Utilities.debug(str(intTop)+"------------"+str(intBot)); value = (intTop << 8) + intBot; if value is not None: return value; else: return "";