Fixed errors in the sample config

I missed a few commas in it. They are there now
This commit is contained in:
Cort Buffington 2013-07-20 18:13:15 -05:00
parent 9eddcf762b
commit 040492c2e2
2 changed files with 2 additions and 3 deletions

View File

@ -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
#************************************************ #************************************************

View File

@ -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