FedP2P/doc.go

18 lines
456 B
Go
Raw Normal View History

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
* Magnet links
2015-06-03 11:30:55 +08:00
* IP Blocklists
* Some IPv6
* HTTP and UDP tracker clients
2015-06-03 11:30:55 +08:00
*/
2015-04-28 13:24:17 +08:00
package torrent