]> Sergey Matveev's repositories - btrtrc.git/blob - config.go
Speed up tests, allow -short for some UDP tracker stuff
[btrtrc.git] / config.go
1 package torrent
2
3 import (
4         "bitbucket.org/anacrolix/go.torrent/dht"
5 )
6
7 type Config struct {
8         DataDir            string
9         ListenAddr         string
10         DisableTrackers    bool
11         DownloadStrategy   DownloadStrategy
12         NoDHT              bool
13         DHTConfig          *dht.ServerConfig
14         NoUpload           bool
15         PeerID             string
16         DisableUTP         bool
17         DisableTCP         bool
18         NoDefaultBlocklist bool
19 }