inbound OBP Unit calls

This commit is contained in:
Cort Buffington 2019-12-04 17:25:50 -06:00
parent 4643ea47b7
commit 63604a5b38
1 changed files with 8 additions and 1 deletions

View File

@ -427,7 +427,14 @@ class routerOBP(OPENBRIDGE):
# Is this a new call stream?
if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']):
if (_stream_id not in self.STATUS):
# This is a new call stream
self.STATUS[_stream_id] = {
'START': pkt_time,
'CONTENTION':False,
'RFS': _rf_src,
'TGID': _dst_id,
}
# Collision in progress, bail out!
if (self.STATUS[_slot]['RX_TYPE'] != HBPF_SLT_VTERM) and (pkt_time < (self.STATUS[_slot]['RX_TIME'] + STREAM_TO)) and (_rf_src != self.STATUS[_slot]['RX_RFS']):