This commit is contained in:
Simon 2021-04-16 11:04:33 +01:00
parent cebdffaf9f
commit 5586c438b2
1 changed files with 1 additions and 1 deletions

View File

@ -1263,7 +1263,7 @@ class routerOBP(OPENBRIDGE):
logger.warning("%s) Out of order packet - last sequence number %s, this sequence number %s, disgarding",self._system,self._lastSeq,_seq)
return
#Inbound missed packets
if _seq and and self._lastSeq and _seq > (self._lastSeq+1):
if _seq and self._lastSeq and _seq > (self._lastSeq+1):
logger.warning("(%s) Missed packet - last sequence number %s, this sequence number %s",self._system,self._lastSeq,_seq)
#Save this sequence number