2015-06-03 03:30:55 +00:00
|
|
|
/*
|
|
|
|
Package torrent implements a torrent client. Goals include:
|
2022-12-05 06:49:27 +00:00
|
|
|
- Configurable data storage, such as file, mmap, and piece-based.
|
|
|
|
- Downloading on demand: torrent.Reader will request only the data required to
|
|
|
|
satisfy Reads, which is ideal for streaming and torrentfs.
|
2015-04-28 05:24:17 +00:00
|
|
|
|
2015-06-03 03:30:55 +00:00
|
|
|
BitTorrent features implemented include:
|
2022-12-05 06:49:27 +00:00
|
|
|
- Protocol obfuscation
|
|
|
|
- DHT
|
|
|
|
- uTP
|
|
|
|
- PEX
|
|
|
|
- Magnet links
|
|
|
|
- IP Blocklists
|
|
|
|
- Some IPv6
|
|
|
|
- HTTP and UDP tracker clients
|
|
|
|
- BEPs:
|
|
|
|
- 3: Basic BitTorrent protocol
|
|
|
|
- 5: DHT
|
|
|
|
- 6: Fast Extension (have all/none only)
|
|
|
|
- 7: IPv6 Tracker Extension
|
|
|
|
- 9: ut_metadata
|
2016-07-11 03:52:51 +00:00
|
|
|
- 10: Extension protocol
|
|
|
|
- 11: PEX
|
|
|
|
- 12: Multitracker metadata extension
|
|
|
|
- 15: UDP Tracker Protocol
|
|
|
|
- 20: Peer ID convention ("-GTnnnn-")
|
|
|
|
- 23: Tracker Returns Compact Peer Lists
|
|
|
|
- 29: uTorrent transport protocol
|
|
|
|
- 41: UDP Tracker Protocol Extensions
|
|
|
|
- 42: DHT Security extension
|
|
|
|
- 43: Read-only DHT Nodes
|
2015-06-03 03:30:55 +00:00
|
|
|
*/
|
2015-04-28 05:24:17 +00:00
|
|
|
package torrent
|