2014-08-21 08:07:06 +00:00
|
|
|
package torrent
|
|
|
|
|
2014-11-28 18:13:08 +00:00
|
|
|
import (
|
2015-03-20 05:37:44 +00:00
|
|
|
"github.com/anacrolix/torrent/dht"
|
2015-08-03 15:07:22 +00:00
|
|
|
"github.com/anacrolix/torrent/iplist"
|
2016-03-28 09:38:30 +00:00
|
|
|
"github.com/anacrolix/torrent/storage"
|
2014-11-28 18:13:08 +00:00
|
|
|
)
|
|
|
|
|
2015-03-08 06:28:14 +00:00
|
|
|
// Override Client defaults.
|
2014-08-21 08:07:06 +00:00
|
|
|
type Config struct {
|
2015-03-08 06:28:14 +00:00
|
|
|
// Store torrent file data in this directory unless TorrentDataOpener is
|
|
|
|
// specified.
|
2015-03-25 04:41:15 +00:00
|
|
|
DataDir string `long:"data-dir" description:"directory to store downloaded torrent data"`
|
2015-03-08 06:28:14 +00:00
|
|
|
// The address to listen for new uTP and TCP bittorrent protocol
|
|
|
|
// connections. DHT shares a UDP socket with uTP unless configured
|
|
|
|
// otherwise.
|
2015-03-25 04:41:15 +00:00
|
|
|
ListenAddr string `long:"listen-addr" value-name:"HOST:PORT"`
|
2015-03-08 06:28:14 +00:00
|
|
|
// Don't announce to trackers. This only leaves DHT to discover peers.
|
2015-03-25 04:41:15 +00:00
|
|
|
DisableTrackers bool `long:"disable-trackers"`
|
2015-03-25 04:42:14 +00:00
|
|
|
DisablePEX bool `long:"disable-pex"`
|
2015-03-08 06:28:14 +00:00
|
|
|
// Don't create a DHT.
|
2015-03-25 04:41:15 +00:00
|
|
|
NoDHT bool `long:"disable-dht"`
|
2015-03-08 06:28:14 +00:00
|
|
|
// Overrides the default DHT configuration.
|
2016-01-16 13:12:53 +00:00
|
|
|
DHTConfig dht.ServerConfig
|
2015-05-14 22:39:53 +00:00
|
|
|
// Don't ever send chunks to peers.
|
2015-03-25 04:41:15 +00:00
|
|
|
NoUpload bool `long:"no-upload"`
|
2015-05-14 22:39:53 +00:00
|
|
|
// Upload even after there's nothing in it for us. By default uploading is
|
|
|
|
// not altruistic.
|
|
|
|
Seed bool `long:"seed"`
|
2015-03-08 06:28:14 +00:00
|
|
|
// User-provided Client peer ID. If not present, one is generated automatically.
|
|
|
|
PeerID string
|
|
|
|
// For the bittorrent protocol.
|
|
|
|
DisableUTP bool
|
|
|
|
// For the bittorrent protocol.
|
2015-04-20 07:35:21 +00:00
|
|
|
DisableTCP bool `long:"disable-tcp"`
|
2015-03-08 06:28:14 +00:00
|
|
|
// Called to instantiate storage for each added torrent. Provided backends
|
|
|
|
// are in $REPO/data. If not set, the "file" implementation is used.
|
2016-03-28 09:38:30 +00:00
|
|
|
DefaultStorage storage.I
|
2015-04-20 07:30:22 +00:00
|
|
|
DisableEncryption bool `long:"disable-encryption"`
|
2015-08-03 15:07:22 +00:00
|
|
|
|
2016-04-04 06:23:30 +00:00
|
|
|
IPBlocklist iplist.Ranger
|
2015-11-05 12:21:39 +00:00
|
|
|
DisableIPv6 bool `long:"disable-ipv6"`
|
2015-08-23 02:59:03 +00:00
|
|
|
// Perform logging and any other behaviour that will help debug.
|
2015-11-05 12:21:39 +00:00
|
|
|
Debug bool `help:"enable debug logging"`
|
2014-08-21 08:07:06 +00:00
|
|
|
}
|