Peter Surda
ac348e4e6b
- fixes errors introduced in the earlier refactoring - more variables moved to state.py - path finding functions moved to paths.py - remembers IPv6 network unreachable (in the future can be used to skip IPv6 for a while)
15 lines
372 B
Python
15 lines
372 B
Python
neededPubkeys = {}
|
|
streamsInWhichIAmParticipating = {}
|
|
sendDataQueues = [] #each sendData thread puts its queue in this list.
|
|
|
|
# For UPnP
|
|
extPort = None
|
|
|
|
# for Tor hidden service
|
|
socksIP = None
|
|
|
|
# Network protocols last check failed
|
|
networkProtocolLastFailed = {'IPv4': 0, 'IPv6': 0, 'onion': 0}
|
|
|
|
appdata = '' #holds the location of the application data storage directory
|