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
There is a hardcoded value in an assertion statement ("target/debug/build/neqo-crypto-a4be3db97961b0ce/out/nspr/pr/src/io/prlayer.c:619") causing the Neqo server only able to accepts up to 32767 connections (including the closed connections). After the 36767th connection, the server will crash with an assertion error. We know that the PRIntn data type used for PRDescIdentity is guaranteed to be 16-bits long. However, the PRIntn data type on our architecture is 32 bits long. Therefore, instead of using a hardcoded value, the assertion statement should use a dynamic value that follows the architecture (reference: https://firefox-source-docs.mozilla.org/nspr/reference/printn.html).
The text was updated successfully, but these errors were encountered:
There is a hardcoded value in an assertion statement ("target/debug/build/neqo-crypto-a4be3db97961b0ce/out/nspr/pr/src/io/prlayer.c:619") causing the Neqo server only able to accepts up to 32767 connections (including the closed connections). After the 36767th connection, the server will crash with an assertion error. We know that the PRIntn data type used for PRDescIdentity is guaranteed to be 16-bits long. However, the PRIntn data type on our architecture is 32 bits long. Therefore, instead of using a hardcoded value, the assertion statement should use a dynamic value that follows the architecture (reference: https://firefox-source-docs.mozilla.org/nspr/reference/printn.html).
The text was updated successfully, but these errors were encountered: