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
i found a crash while i am perfoming connect from rakpeer::connect interface by passing the connect atempt count below NUM_MTU_SIZES( <3 )
See rakpeer.cpp at line 5919
int MTUSizeIndex = rcs->requestsMade / (rcs->sendConnectionAttemptCount/NUM_MTU_SIZES);
if value of rcs->sendConnectionAttemptCount is below NUM_MTU_SIZES, the divied by zero issue will be occured.
The text was updated successfully, but these errors were encountered:
i found a crash while i am perfoming connect from rakpeer::connect interface by passing the connect atempt count below NUM_MTU_SIZES( <3 )
See rakpeer.cpp at line 5919
int MTUSizeIndex = rcs->requestsMade / (rcs->sendConnectionAttemptCount/NUM_MTU_SIZES);
if value of rcs->sendConnectionAttemptCount is below NUM_MTU_SIZES, the divied by zero issue will be occured.
The text was updated successfully, but these errors were encountered: