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
Thank you for the great QUIC implementation! We might have found a bug, though it's only affecting the echo example. The server code crashed in the case if more than 256 connections are handled.
Details: The conns array holds active connections for the instance and is defined by a fixed length:
Thank you for the great QUIC implementation! We might have found a bug, though it's only affecting the echo example. The server code crashed in the case if more than 256 connections are handled.
Details: The
conns
array holds active connections for the instance and is defined by a fixed length:quicly/examples/echo.c
Line 195 in a9498b4
In
process_msg
new connections are accepted and added to the respective list, but the length of this list is not checked:quicly/examples/echo.c
Lines 176 to 179 in a9498b4
The text was updated successfully, but these errors were encountered: