You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the DetermineDelayTime function +1 is added to the randomized delay time. This is wrong for two reasons. First the Spec states that the delay time shall be between 0 and the max delay time, and second if the max delay time is the result of the randomization process, the allocated delay time will be 1ms larger than the allowed delay time.
The text was updated successfully, but these errors were encountered:
In addition the if condition if the delay time has been reached is also off by +1, as it checks against greater or equal than 0, but if the time has reached 0 the delay has already be fulfilled. So the correct condition is greater than 0 for stalling, otherwise send the message.
In the DetermineDelayTime function +1 is added to the randomized delay time. This is wrong for two reasons. First the Spec states that the delay time shall be between 0 and the max delay time, and second if the max delay time is the result of the randomization process, the allocated delay time will be 1ms larger than the allowed delay time.
The text was updated successfully, but these errors were encountered: