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