2014-08-21 18:07:06 +10:00
|
|
|
package torrent
|
|
|
|
|
2014-11-28 12:13:08 -06:00
|
|
|
import (
|
|
|
|
"bitbucket.org/anacrolix/go.torrent/dht"
|
|
|
|
)
|
|
|
|
|
2014-08-21 18:07:06 +10:00
|
|
|
type Config struct {
|
2014-12-02 14:23:01 -06:00
|
|
|
DataDir string
|
|
|
|
ListenAddr string
|
|
|
|
DisableTrackers bool
|
|
|
|
DownloadStrategy DownloadStrategy
|
|
|
|
NoDHT bool
|
|
|
|
DHTConfig *dht.ServerConfig
|
|
|
|
NoUpload bool
|
|
|
|
PeerID string
|
|
|
|
DisableUTP bool
|
|
|
|
DisableTCP bool
|
|
|
|
NoDefaultBlocklist bool
|
2014-08-21 18:07:06 +10:00
|
|
|
}
|