2014-08-21 08:07:06 +00:00
|
|
|
package torrent
|
|
|
|
|
2014-11-28 18:13:08 +00:00
|
|
|
import (
|
|
|
|
"bitbucket.org/anacrolix/go.torrent/dht"
|
|
|
|
)
|
|
|
|
|
2014-08-21 08:07:06 +00:00
|
|
|
type Config struct {
|
|
|
|
DataDir string
|
|
|
|
ListenAddr string
|
|
|
|
DisableTrackers bool
|
|
|
|
DownloadStrategy DownloadStrategy
|
|
|
|
NoDHT bool
|
2014-11-28 18:13:08 +00:00
|
|
|
DHTConfig *dht.ServerConfig
|
2014-08-24 20:00:29 +00:00
|
|
|
NoUpload bool
|
2014-11-16 19:54:43 +00:00
|
|
|
PeerID string
|
2014-11-17 05:27:01 +00:00
|
|
|
DisableUTP bool
|
|
|
|
DisableTCP bool
|
2014-08-21 08:07:06 +00:00
|
|
|
}
|