mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Add ARQ session ABORTED state
This commit is contained in:
parent
0a59c4f616
commit
073966122f
2 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,7 @@ class IRS_State(Enum):
|
||||||
BURST_REPLY_SENT = 3
|
BURST_REPLY_SENT = 3
|
||||||
ENDED = 4
|
ENDED = 4
|
||||||
FAILED = 5
|
FAILED = 5
|
||||||
|
ABORTER = 6
|
||||||
|
|
||||||
class ARQSessionIRS(arq_session.ARQSession):
|
class ARQSessionIRS(arq_session.ARQSession):
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ class ISS_State(Enum):
|
||||||
BURST_SENT = 3
|
BURST_SENT = 3
|
||||||
ENDED = 4
|
ENDED = 4
|
||||||
FAILED = 5
|
FAILED = 5
|
||||||
|
ABORTED = 6
|
||||||
|
|
||||||
class ARQSessionISS(arq_session.ARQSession):
|
class ARQSessionISS(arq_session.ARQSession):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue