1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-09-28 22:15:23 +08:00

router entry status definition is correct

This commit is contained in:
Joel Bender 2019-03-25 21:46:04 -04:00
parent b5a9c5defc
commit 9072c65c0b

View File

@ -1667,14 +1667,12 @@ class IPMode(Enumerated):
} }
class RouterEntryStatus(Enumerated): class RouterEntryStatus(Enumerated):
# This was defined directly in the RouterEntry Sequence in the standard, but I moved it up here because
# I didn't see anywhere else you defined something that way.
enumerations = \ enumerations = \
{ 'available':0 { 'available':0
, 'busy':1 , 'busy':1
, 'disconnected':2 , 'disconnected':2
} }
# #
# Forward Sequences # Forward Sequences
# #