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:
parent
ebbf2f0e35
commit
3d99ccc893
|
|
@ -221,7 +221,7 @@ class WriteBroadcastDistributionTable(BVLPDU):
|
||||||
BVLCI.update(bvlpdu, self)
|
BVLCI.update(bvlpdu, self)
|
||||||
for bdte in self.bvlciBDT:
|
for bdte in self.bvlciBDT:
|
||||||
bvlpdu.put_data( bdte.addrAddr )
|
bvlpdu.put_data( bdte.addrAddr )
|
||||||
bvlpdu.put_data( bdte.addrMask )
|
bvlpdu.put_long( bdte.addrMask )
|
||||||
|
|
||||||
def decode(self, bvlpdu):
|
def decode(self, bvlpdu):
|
||||||
BVLCI.update(self, bvlpdu)
|
BVLCI.update(self, bvlpdu)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user