torrent/config.go

19 lines
355 B
Go
Raw Normal View History

2014-08-21 08:07:06 +00:00
package torrent
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
DHTConfig *dht.ServerConfig
NoUpload bool
PeerID string
DisableUTP bool
DisableTCP bool
2014-08-21 08:07:06 +00:00
}