Fixed errors in the sample config
I missed a few commas in it. They are there now
This commit is contained in:
parent
9eddcf762b
commit
040492c2e2
1
ipsc.py
1
ipsc.py
@ -162,7 +162,6 @@ class IPSC(DatagramProtocol):
|
||||
self._loop = self._call.start(self._config['LOCAL']['ALIVE_TIMER'])
|
||||
|
||||
|
||||
|
||||
#************************************************
|
||||
# FUNCTIONS FOR IPSC Network Engine
|
||||
#************************************************
|
||||
|
@ -5,11 +5,11 @@ NETWORK = {
|
||||
'MODE': b'\x6A',
|
||||
'FLAGS': b'\x00\x00\x00\x14',
|
||||
'PORT': 50001,
|
||||
'NUM_PEERS': 0
|
||||
'NUM_PEERS': 0,
|
||||
'ALIVE_TIMER': 5, # Seconds between keep-alives and registration attempts
|
||||
'MAX_MISSED': 5, # Maximum number of keep-alives missed before de-registration
|
||||
'RADIO_ID': b'\x00\x00\x00\x0A',
|
||||
'AUTH_KEY': b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01'
|
||||
'AUTH_KEY': b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01',
|
||||
'ENABLED': True,
|
||||
'STATUS': {
|
||||
'ACTIVE': False
|
||||
|
Loading…
Reference in New Issue
Block a user