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
that I solved by setting the min_packets_to_send = 1 instead of min_packets_to_send = 0 . I am pretty sure that it can be fixed also by putting assert(min_packets_to_send < s->max_datagrams)
Can you inspect this error and validate the solution?
Thanks
The text was updated successfully, but these errors were encountered:
I had this error come up recently. I tried changing <= to < in assert(min_packets_to_send <= s->max_datagrams) but it didn't seem to work. Still not sure what's up with it.
Hi,
during some tests I got this error
that I solved by setting the
min_packets_to_send = 1
instead ofmin_packets_to_send = 0
. I am pretty sure that it can be fixed also by puttingassert(min_packets_to_send < s->max_datagrams)
Can you inspect this error and validate the solution?
Thanks
The text was updated successfully, but these errors were encountered: