2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/doc.go
Matt Joiner 67dbccff40 Update package doc
In particular, ConfigDir has gone away.
2016-05-11 21:53:42 +10:00

18 lines
456 B
Go

/*
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.
BitTorrent features implemented include:
* Protocol obfuscation
* DHT
* uTP
* PEX
* Magnet links
* IP Blocklists
* Some IPv6
* HTTP and UDP tracker clients
*/
package torrent