2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/config.go

20 lines
400 B
Go
Raw Normal View History

2014-08-21 18:07:06 +10:00
package torrent
import (
"bitbucket.org/anacrolix/go.torrent/dht"
)
2014-08-21 18:07:06 +10: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
NoDefaultBlocklist bool
2014-08-21 18:07:06 +10:00
}