]> Sergey Matveev's repositories - btrtrc.git/blob - config.go
Allow the client ID to be set in the config
[btrtrc.git] / config.go
1 package torrent
2
3 type Config struct {
4         DataDir          string
5         ListenAddr       string
6         DisableTrackers  bool
7         DownloadStrategy DownloadStrategy
8         NoDHT            bool
9         NoUpload         bool
10         PeerID           string
11 }