13 lines
435 B
Python
13 lines
435 B
Python
# coding=utf-8
|
|
DEFAULT_MAX_METADATA_SIZE = 10 * 1024 * 1024
|
|
BOOTSTRAPPING_NODES = [
|
|
("router.bittorrent.com", 6881),
|
|
("dht.transmissionbt.com", 6881)
|
|
]
|
|
PENDING_INFO_HASHES = 10 # threshold for pending info hashes before being committed to database:
|
|
|
|
# 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
|
|
|
|
PEER_TIMEOUT=120 # seconds
|