Skip to content

Commit

Permalink
Readded resends for packet type 0x11
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed Jul 11, 2017
1 parent 14877fb commit 6d206ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhysicalInterfaces/IBidCoSInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ void IBidCoSInterface::sendPacket(std::shared_ptr<BaseLib::Systems::Packet> pack
forceSendPacket(bidCoSPacket);
packet->setTimeSending(BaseLib::HelperFunctions::getTime());
_aesHandshake->setMFrame(bidCoSPacket);
if(!_updateMode && bidCoSPacket->messageType() != 0x11 &&
if(!_updateMode &&
!(bidCoSPacket->messageType() == 0x41 && ((bidCoSPacket->controlByte() == 0x14 && bidCoSPacket->payload()->size() == 10) || (bidCoSPacket->controlByte() == 0x94 && bidCoSPacket->payload()->size() == 3)))) //HM-Sec-SD(-2)
{
if(bidCoSPacket->controlByte() & 0x10)
Expand Down

0 comments on commit 6d206ca

Please sign in to comment.