fixed type casting issue with NormSenderNode::backoff_factor
parent
d00ebc22d2
commit
e9658ab837
|
|
@ -3157,7 +3157,7 @@ bool NormSession::InsertRemoteSender(NormSenderNode &sender)
|
||||||
cmd.SetDestination(sender.GetAddress());
|
cmd.SetDestination(sender.GetAddress());
|
||||||
cmd.SetInstanceId(sender.GetInstanceId());
|
cmd.SetInstanceId(sender.GetInstanceId());
|
||||||
cmd.SetGrtt(sender.GetGrttQuantized());
|
cmd.SetGrtt(sender.GetGrttQuantized());
|
||||||
cmd.SetBackoffFactor((UINT8)sender.GetBackoffFactor());
|
cmd.SetBackoffFactor((UINT8)sender.GetBackoffFactor()); // TBD - should we clean up this backoff factor casting
|
||||||
cmd.SetGroupSize(sender.GetGroupSizeQuantized());
|
cmd.SetGroupSize(sender.GetGroupSizeQuantized());
|
||||||
cmd.SetCCSequence(sender.GetCCSequence());
|
cmd.SetCCSequence(sender.GetCCSequence());
|
||||||
// Adjust send time for any current hold time
|
// Adjust send time for any current hold time
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue