Closed Sonny333Black closed 3 years ago
please can you fix in tftp.py the line 131 response += str(self.blksize) + b'\x00' I think there is missing a part in the line.
response += str(self.blksize) + b'\x00'
before response += str(self.blksize) + b'\x00' after response += str(self.blksize).encode('ascii') + b'\x00'
response += str(self.blksize).encode('ascii') + b'\x00'
This should be fixed now that PR #187 is merged.
please can you fix in tftp.py the line 131
response += str(self.blksize) + b'\x00'
I think there is missing a part in the line.before
response += str(self.blksize) + b'\x00'
afterresponse += str(self.blksize).encode('ascii') + b'\x00'