2
0
mirror of synced 2025-02-24 06:38:14 +00:00
torrent/doc.go

24 lines
601 B
Go
Raw Normal View History

2015-06-03 13:30:55 +10: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 15:24:17 +10:00
2015-06-03 13:30:55 +10:00
BitTorrent features implemented include:
* Protocol obfuscation
* DHT
* uTP
* PEX
* Magnet
* IP Blocklists
* Some IPv6
* UDP Trackers
2015-06-22 19:48:50 +10:00
ConfigDir
A Client has a configurable ConfigDir that defaults to $HOME/.config/torrent.
Torrent metainfo files are cached at $CONFIGDIR/torrents/$infohash.torrent.
2015-06-03 13:30:55 +10:00
*/
2015-04-28 15:24:17 +10:00
package torrent