2017-04-30 23:10:09 +02:00
|
|
|
# coding=utf-8
|
|
|
|
DEFAULT_MAX_METADATA_SIZE = 10 * 1024 * 1024
|
|
|
|
BOOTSTRAPPING_NODES = [
|
|
|
|
("router.bittorrent.com", 6881),
|
|
|
|
("dht.transmissionbt.com", 6881)
|
|
|
|
]
|
2017-05-01 00:40:54 +02:00
|
|
|
PENDING_INFO_HASHES = 10 # threshold for pending info hashes before being committed to database:
|
2017-04-30 23:10:09 +02:00
|
|
|
|
|
|
|
# maximum (inclusive) number of active (disposable) peers to fetch the metadata per info hash at the same time:
|
|
|
|
MAX_ACTIVE_PEERS_PER_INFO_HASH = 5
|
2017-05-14 21:47:33 +02:00
|
|
|
|
2017-05-14 22:37:22 +02:00
|
|
|
PEER_TIMEOUT=120 # seconds
|