我正在寻找一些书籍,教程网站。
我想了解Bittorrent协议是如何工作的,然后实现我自己的追踪器。
我对网络协议了解不多,所以我想找个新手。
我看过以下帖子,但它们并没有帮助我解决我的问题:
A BitTorrent client completely written in C#?
Implementing Bittorrent Protocol
Looking for some good books/resources on understanding Bittorrent?
谢谢你的帮助。
发布于 2009-12-24 18:46:50
BitTorrent规范非常容易阅读(相对而言):
http://www.bittorrent.org/beps/bep_0003.html
维基百科的页面也出人意料地全面:
http://en.wikipedia.org/wiki/BitTorrent_%28protocol%29
发布于 2012-07-24 07:51:44
BitTornado有一个跟踪器实现,它是用Python语言编写的,很容易阅读。从一些有用的东西开始,然后你可以尝试理解基于协议的代码,这是很好的。BitTornado基于Bram Cohen实现的原始版本。Tracker是在BitTornado.BT1.track.py中实现的
发布于 2015-09-07 03:59:52
utube上有一堆视频,包括:Stanford Seminar - Bram Cohen
https://stackoverflow.com/questions/1957816
复制相似问题