Changed initial state values for some reporting variables. Cosmetic, but avoids unecessary tracabacks.

This commit is contained in:
Cort Buffington 2020-01-13 14:45:17 +00:00
parent ef4514b8e0
commit 58c84cf43a
2 changed files with 36 additions and 36 deletions

View File

@ -405,7 +405,7 @@ class routerHBP(HBSYSTEM):
1: {
'RX_START': time(),
'TX_START': time(),
'RX_SEQ': b'\x00',
'RX_SEQ': 0,
'RX_RFS': b'\x00',
'TX_RFS': b'\x00',
'RX_PEER': b'\x00',
@ -431,7 +431,7 @@ class routerHBP(HBSYSTEM):
2: {
'RX_START': time(),
'TX_START': time(),
'RX_SEQ': b'\x00',
'RX_SEQ': 0,
'RX_RFS': b'\x00',
'TX_RFS': b'\x00',
'RX_PEER': b'\x00',

View File

@ -82,13 +82,13 @@ class bridgeallSYSTEM(HBSYSTEM):
1: {
'RX_START': time(),
'RX_LOSS': 0,
'RX_SEQ': '\x00',
'RX_RFS': '\x00',
'TX_RFS': '\x00',
'RX_STREAM_ID': '\x00',
'TX_STREAM_ID': '\x00',
'RX_TGID': '\x00\x00\x00',
'TX_TGID': '\x00\x00\x00',
'RX_SEQ': 0,
'RX_RFS': b'\x00',
'TX_RFS': b'\x00',
'RX_STREAM_ID': b'\x00',
'TX_STREAM_ID': b'\x00',
'RX_TGID': b'\x00\x00\x00',
'TX_TGID': b'\x00\x00\x00',
'RX_TIME': time(),
'TX_TIME': time(),
'RX_TYPE': const.HBPF_SLT_VTERM,
@ -96,13 +96,13 @@ class bridgeallSYSTEM(HBSYSTEM):
2: {
'RX_START': time(),
'RX:LOSS': 0,
'RX_SEQ': '\x00',
'RX_RFS': '\x00',
'TX_RFS': '\x00',
'RX_STREAM_ID': '\x00',
'TX_STREAM_ID': '\x00',
'RX_TGID': '\x00\x00\x00',
'TX_TGID': '\x00\x00\x00',
'RX_SEQ': 0,
'RX_RFS': b'\x00',
'TX_RFS': b'\x00',
'RX_STREAM_ID': b'\x00',
'TX_STREAM_ID': b'\x00',
'RX_TGID': b'\x00\x00\x00',
'TX_TGID': b'\x00\x00\x00',
'RX_TIME': time(),
'TX_TIME': time(),
'RX_TYPE': const.HBPF_SLT_VTERM,