2016-06-30 10:11:33 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import queue
|
|
|
|
import threading
|
|
|
|
|
|
|
|
listening_port = 8444
|
2016-07-09 19:37:54 +02:00
|
|
|
send_outgoing_connections = True
|
2017-01-14 13:42:15 +01:00
|
|
|
listen_for_connections = True
|
2016-06-30 10:11:33 +02:00
|
|
|
data_directory = 'minode_data/'
|
2016-07-19 11:53:24 +02:00
|
|
|
source_directory = os.path.dirname(os.path.realpath(__file__))
|
2017-01-14 13:42:15 +01:00
|
|
|
trusted_peer = None
|
|
|
|
# trusted_peer = ('127.0.0.1', 8444)
|
2016-06-30 10:11:33 +02:00
|
|
|
|
2017-02-13 19:02:36 +01:00
|
|
|
log_level = logging.INFO
|
2016-06-30 10:11:33 +02:00
|
|
|
|
|
|
|
magic_bytes = b'\xe9\xbe\xb4\xd9'
|
|
|
|
protocol_version = 3
|
2016-07-19 11:53:24 +02:00
|
|
|
services = 3 # NODE_NETWORK, NODE_SSL
|
2016-06-30 10:11:33 +02:00
|
|
|
stream = 1
|
|
|
|
nonce = os.urandom(8)
|
2017-05-25 12:03:51 +02:00
|
|
|
user_agent = b'/MiNode:0.2.2/'
|
2016-06-30 10:11:33 +02:00
|
|
|
timeout = 600
|
|
|
|
header_length = 24
|
|
|
|
|
2017-06-09 20:41:33 +02:00
|
|
|
i2p_enabled = False
|
|
|
|
i2p_sam_host = '127.0.0.1'
|
|
|
|
i2p_sam_port = 7656
|
|
|
|
i2p_session_nick = b''
|
|
|
|
i2p_dest_pub = b''
|
|
|
|
|
2016-06-30 10:11:33 +02:00
|
|
|
nonce_trials_per_byte = 1000
|
|
|
|
payload_length_extra_bytes = 1000
|
|
|
|
|
|
|
|
shutting_down = False
|
|
|
|
|
|
|
|
vector_advertise_queue = queue.Queue()
|
|
|
|
address_advertise_queue = queue.Queue()
|
|
|
|
|
|
|
|
connections = set()
|
|
|
|
connections_lock = threading.Lock()
|
|
|
|
|
|
|
|
hosts = set()
|
|
|
|
|
|
|
|
core_nodes = set()
|
|
|
|
|
|
|
|
node_pool = set()
|
|
|
|
unchecked_node_pool = set()
|
|
|
|
|
|
|
|
outgoing_connections = 8
|
2017-05-25 12:03:51 +02:00
|
|
|
connection_limit = 250
|
2016-06-30 10:11:33 +02:00
|
|
|
|
|
|
|
objects = {}
|
|
|
|
objects_lock = threading.Lock()
|