diff options
author | pxqr <pxqr.sta@gmail.com> | 2013-08-17 20:55:26 +0400 |
---|---|---|
committer | pxqr <pxqr.sta@gmail.com> | 2013-08-17 20:55:26 +0400 |
commit | c38d75c34e18fc967692bf1219f7c19a996878d3 (patch) | |
tree | 5330584daa56b1f92a1c7badc8c722d46b4c66cd /BEP.md | |
parent | 705f634b12a1b799504d2df735d2b30ca4e71738 (diff) |
Add links to implementation.
Diffstat (limited to 'BEP.md')
-rw-r--r-- | BEP.md | 22 |
1 files changed, 15 insertions, 7 deletions
@@ -23,14 +23,14 @@ too) | |||
23 | 23 | ||
24 | | BEP # | Title | Status | 24 | | BEP # | Title | Status |
25 | |:-----:|:--------------------------------------------------:|:----------- | 25 | |:-----:|:--------------------------------------------------:|:----------- |
26 | | 3 | [The BitTorrent Protocol Specification][bep3] | Implemented | 26 | | 3 | [The BitTorrent Protocol Specification][bep3] | [Implemented][bep3-impl] |
27 | | 4 | [Known Number Allocations][bep4] | Implemented | 27 | | 4 | [Known Number Allocations][bep4] | [In progress][bep4-impl] |
28 | | 20 | [Peer ID Conventions][bep20] | Implemented | 28 | | 20 | [Peer ID Conventions][bep20] | [Implemented][bep20-impl] |
29 | | 23 | [Tracker Return Compact Peer Lists][bep23] | Implemented | 29 | | 23 | [Tracker Return Compact Peer Lists][bep23] | [Implemented][bep23-impl] |
30 | | 15 | [UDP Tracker Protocol for BitTorrent][bep15] | In progress | 30 | | 15 | [UDP Tracker Protocol for BitTorrent][bep15] | [In progress][bep15-impl] |
31 | | 9 | [Extension for Peers to Send Metadata Files][bep9] | Want | 31 | | 9 | [Extension for Peers to Send Metadata Files][bep9] | Want |
32 | | 5 | [DHT][bep5] | In progress | 32 | | 5 | [DHT][bep5] | [In progress][bep5-impl] |
33 | | 6 | [Fast Extension][bep6] | In progress | 33 | | 6 | [Fast Extension][bep6] | [In progress][bep6-impl] |
34 | 34 | ||
35 | [bep-list]: http://www.bittorrent.org/beps/bep_0000.html | 35 | [bep-list]: http://www.bittorrent.org/beps/bep_0000.html |
36 | [bep3]: http://www.bittorrent.org/beps/bep_0003.html | 36 | [bep3]: http://www.bittorrent.org/beps/bep_0003.html |
@@ -41,3 +41,11 @@ too) | |||
41 | [bep15]: http://www.bittorrent.org/beps/bep_0015.html | 41 | [bep15]: http://www.bittorrent.org/beps/bep_0015.html |
42 | [bep20]: http://www.bittorrent.org/beps/bep_0020.html | 42 | [bep20]: http://www.bittorrent.org/beps/bep_0020.html |
43 | [bep23]: http://www.bittorrent.org/beps/bep_0023.html | 43 | [bep23]: http://www.bittorrent.org/beps/bep_0023.html |
44 | |||
45 | [bep3-impl]: src | ||
46 | [bep4-impl]: src/Network/BitTorrent/Extension.hs | ||
47 | [bep5-impl]: src/Network/BitTorrent/DHT/Protocol.hs | ||
48 | [bep6-impl]: src/Network/BitTorrent/Exchange.hs | ||
49 | [bep15-impl]: src/Network/BitTorrent/Tracker/UDP.hs | ||
50 | [bep20-impl]: src/Network/BitTorrent/Peer.hs | ||
51 | [bep23-impl]: https://github.com/cobit/torrent-content/tree/master/src/Data/Torrent/Metainfo.hs | ||