从我获得了peerlist并且我获得了与peer的tcp连接,我尝试向他们发送握手消息,但他们似乎没有回应。
这是我在代码中的消息:
message = bytes(chr(19))+"BitTorrent protocol00000000"+self.getInfoHash(torrentCont)+self.peer_id
self.getInfoHash(torrentCont)是来自torrent文件的原始哈希
这是我发送的实际内容:
BitTorrent protocol00000000ŒïƒœÝtDØ´öÙÄ×àŠD³T4F11T6ZGBQK2Y5LB8I4
关于我做错了什么的任何建议?
答案 0 :(得分:5)
你会混淆字节和字符。规范说的是你应该发送8个空字节,而不是字符“0”的八倍(这是chr(48)):
message = (chr(19) +
"BitTorrent protocol" +
8 * chr(0) + # <--- here
self.getInfoHash(torrentCont) +
self.peer_id)
# in case of doubt...
assert len(self.getInfoHash(torrentCont)) == 20
assert len(self.peer_id) == 20