Open JoelBender opened 2 years ago
When unsetting the expecting reply bit in a ReadPropertyMultipleRequest like this:
request = ReadPropertyMultipleRequest(listOfReadAccessSpecs=readAccessSpecList) request.pduExpectingReply = 0 request.pduDestination = Address(address) iocb = IOCB(request) deferred(self.request_io, iocb)
The bit is turned back on by the time the packet hits the wire.
There is a gist here that shows the bit correctly follows the request, if it is turned off at the application then it remains off through the stack.
Discussed in https://github.com/JoelBender/bacpypes/discussions/471
When unsetting the expecting reply bit in a ReadPropertyMultipleRequest like this:
The bit is turned back on by the time the packet hits the wire.