2015-06-03 11:30:55 +08:00
|
|
|
/*
|
|
|
|
Package torrent implements a torrent client. Goals include:
|
|
|
|
* 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 13:24:17 +08:00
|
|
|
|
2015-06-03 11:30:55 +08:00
|
|
|
BitTorrent features implemented include:
|
|
|
|
* Protocol obfuscation
|
|
|
|
* DHT
|
|
|
|
* uTP
|
|
|
|
* PEX
|
2016-05-11 19:53:42 +08:00
|
|
|
* Magnet links
|
2015-06-03 11:30:55 +08:00
|
|
|
* IP Blocklists
|
|
|
|
* Some IPv6
|
2016-05-11 19:53:42 +08:00
|
|
|
* HTTP and UDP tracker clients
|
2015-06-03 11:30:55 +08:00
|
|
|
*/
|
2015-04-28 13:24:17 +08:00
|
|
|
package torrent
|