2014-08-21 16:07:06 +08:00
|
|
|
package torrent
|
|
|
|
|
2014-11-29 02:13:08 +08:00
|
|
|
import (
|
|
|
|
"bitbucket.org/anacrolix/go.torrent/dht"
|
|
|
|
)
|
|
|
|
|
2014-08-21 16:07:06 +08:00
|
|
|
type Config struct {
|
2014-12-03 04:23:01 +08:00
|
|
|
DataDir string
|
|
|
|
ListenAddr string
|
|
|
|
DisableTrackers bool
|
|
|
|
DownloadStrategy DownloadStrategy
|
|
|
|
NoDHT bool
|
|
|
|
DHTConfig *dht.ServerConfig
|
|
|
|
NoUpload bool
|
|
|
|
PeerID string
|
|
|
|
DisableUTP bool
|
|
|
|
DisableTCP bool
|
|
|
|
NoDefaultBlocklist bool
|
2015-02-25 11:48:39 +08:00
|
|
|
// Defaults to "$HOME/.config/torrent"
|
|
|
|
ConfigDir string
|
|
|
|
DisableMetainfoCache bool
|
|
|
|
TorrentDataOpener
|
2014-08-21 16:07:06 +08:00
|
|
|
}
|