2019-10-22 16:24:37 +02:00
|
|
|
"""
|
|
|
|
Global runtime variables.
|
|
|
|
"""
|
2017-01-12 06:58:35 +01:00
|
|
|
|
2017-01-11 14:27:19 +01:00
|
|
|
neededPubkeys = {}
|
2017-02-06 17:47:05 +01:00
|
|
|
streamsInWhichIAmParticipating = []
|
2017-01-11 14:27:19 +01:00
|
|
|
|
|
|
|
extPort = None
|
2019-10-22 16:24:37 +02:00
|
|
|
"""For UPnP"""
|
2017-01-11 14:27:19 +01:00
|
|
|
|
|
|
|
socksIP = None
|
2019-10-22 16:24:37 +02:00
|
|
|
"""for Tor hidden service"""
|
2017-01-11 17:00:00 +01:00
|
|
|
|
2019-10-22 16:24:37 +02:00
|
|
|
appdata = ''
|
|
|
|
"""holds the location of the application data storage directory"""
|
2017-01-14 23:20:15 +01:00
|
|
|
|
2018-04-18 12:34:12 +02:00
|
|
|
shutdown = 0
|
2019-10-22 16:24:37 +02:00
|
|
|
"""
|
|
|
|
Set to 1 by the doCleanShutdown function.
|
|
|
|
Used to tell the proof of work worker threads to exit.
|
|
|
|
"""
|
2018-04-09 06:38:48 +02:00
|
|
|
|
|
|
|
# Component control flags - set on startup, do not change during runtime
|
|
|
|
# The defaults are for standalone GUI (default operating mode)
|
2019-10-22 16:24:37 +02:00
|
|
|
enableNetwork = True
|
|
|
|
"""enable network threads"""
|
|
|
|
enableObjProc = True
|
|
|
|
"""enable object processing threads"""
|
|
|
|
enableAPI = True
|
|
|
|
"""enable API (if configured)"""
|
|
|
|
enableGUI = True
|
|
|
|
"""enable GUI (QT or ncurses)"""
|
|
|
|
enableSTDIO = False
|
|
|
|
"""enable STDIO threads"""
|
2017-02-02 15:48:56 +01:00
|
|
|
curses = False
|
|
|
|
|
2019-10-22 16:24:37 +02:00
|
|
|
sqlReady = False
|
|
|
|
"""set to true by sqlTread when ready for processing"""
|
2017-02-26 20:44:56 +01:00
|
|
|
|
2017-05-25 23:04:33 +02:00
|
|
|
maximumNumberOfHalfOpenConnections = 0
|
|
|
|
|
2017-05-29 00:24:07 +02:00
|
|
|
invThread = None
|
2017-07-05 08:57:44 +02:00
|
|
|
addrThread = None
|
2017-07-05 09:25:49 +02:00
|
|
|
downloadThread = None
|
2018-12-18 22:47:34 +01:00
|
|
|
uploadThread = None
|
2017-05-29 00:24:07 +02:00
|
|
|
|
2017-05-31 00:04:21 +02:00
|
|
|
ownAddresses = {}
|
|
|
|
|
2017-08-06 21:29:54 +02:00
|
|
|
discoveredPeers = {}
|
|
|
|
|
2018-02-03 11:46:39 +01:00
|
|
|
dandelion = 0
|
2018-04-05 11:50:34 +02:00
|
|
|
|
|
|
|
testmode = False
|
2018-07-05 15:37:16 +02:00
|
|
|
|
|
|
|
kivy = False
|
2018-09-04 14:44:28 +02:00
|
|
|
|
|
|
|
association = ''
|