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

fix an encoding bug with WriteBroadcastDistributionTable

This commit is contained in:
Joel Bender 2017-09-03 01:17:26 -04:00
parent ebbf2f0e35
commit 3d99ccc893

View File

@ -221,7 +221,7 @@ class WriteBroadcastDistributionTable(BVLPDU):
BVLCI.update(bvlpdu, self)
for bdte in self.bvlciBDT:
bvlpdu.put_data( bdte.addrAddr )
bvlpdu.put_data( bdte.addrMask )
bvlpdu.put_long( bdte.addrMask )
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)