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'])
|
self._loop = self._call.start(self._config['LOCAL']['ALIVE_TIMER'])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#************************************************
|
#************************************************
|
||||||
# FUNCTIONS FOR IPSC Network Engine
|
# FUNCTIONS FOR IPSC Network Engine
|
||||||
#************************************************
|
#************************************************
|
||||||
|
@ -5,11 +5,11 @@ NETWORK = {
|
|||||||
'MODE': b'\x6A',
|
'MODE': b'\x6A',
|
||||||
'FLAGS': b'\x00\x00\x00\x14',
|
'FLAGS': b'\x00\x00\x00\x14',
|
||||||
'PORT': 50001,
|
'PORT': 50001,
|
||||||
'NUM_PEERS': 0
|
'NUM_PEERS': 0,
|
||||||
'ALIVE_TIMER': 5, # Seconds between keep-alives and registration attempts
|
'ALIVE_TIMER': 5, # Seconds between keep-alives and registration attempts
|
||||||
'MAX_MISSED': 5, # Maximum number of keep-alives missed before de-registration
|
'MAX_MISSED': 5, # Maximum number of keep-alives missed before de-registration
|
||||||
'RADIO_ID': b'\x00\x00\x00\x0A',
|
'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,
|
'ENABLED': True,
|
||||||
'STATUS': {
|
'STATUS': {
|
||||||
'ACTIVE': False
|
'ACTIVE': False
|
||||||
|
Loading…
x
Reference in New Issue
Block a user