FedP2P/config.go

14 lines
265 B
Go
Raw Normal View History

2014-08-21 16:07:06 +08:00
package torrent
type Config struct {
DataDir string
ListenAddr string
DisableTrackers bool
DownloadStrategy DownloadStrategy
NoDHT bool
NoUpload bool
PeerID string
DisableUTP bool
DisableTCP bool
2014-08-21 16:07:06 +08:00
}