work on stats

This commit is contained in:
n0mjs710 2018-11-30 20:45:52 -06:00
parent 9a82e0d743
commit 311b953900
1 changed files with 20 additions and 19 deletions

View File

@ -237,12 +237,13 @@ def build_stats():
def table_update(p):
action = p[1]
system = p[2]
timeSlot = p[6]
timeSlot = int(p[6])
callType = p[0]
sourceSub = p[5]
sourcePeer = p[4]
destination = p[7]
sourceSub = int(p[5])
sourcePeer = int(p[4])
destination = int(p[7])
if system in CTABLE['MASTERS']:
if action == 'START':
CTABLE['MASTERS'][system]['PEERS'][sourcePeer][timeSlot]['TS'] = True
CTABLE['MASTERS'][system]['PEERS'][sourcePeer][timeSlot]['TYPE'] = callType
@ -256,7 +257,7 @@ def table_update(p):
CTABLE['MASTERS'][system]['PEERS'][sourcePeer][timeSlot]['SRC'] = ''
CTABLE['MASTERS'][system]['PEERS'][sourcePeer][timeSlot]['DEST'] = ''
build_Stats()
build_stats()
#
# PROCESS IN COMING MESSAGES AND TAKE THE CORRECT ACTION DEPENING ON THE OPCODE
#