2014-08-21 18:07:06 +10:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
DataDir string
|
|
|
|
ListenAddr string
|
|
|
|
DisableTrackers bool
|
|
|
|
DownloadStrategy DownloadStrategy
|
|
|
|
NoDHT bool
|
2014-08-25 06:00:29 +10:00
|
|
|
NoUpload bool
|
2014-11-16 13:54:43 -06:00
|
|
|
PeerID string
|
2014-11-16 23:27:01 -06:00
|
|
|
DisableUTP bool
|
|
|
|
DisableTCP bool
|
2014-08-21 18:07:06 +10:00
|
|
|
}
|