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
apr_int64_t is used almost everywhere. Sometimes it's not needed (i.e. the WebSocket protocol version), sometimes an apr_size_t should be there instead (i.e. when calculating buffer sizes), and sometimes we should probably use apr_uint64_t because negative values are unnecessary.
The text was updated successfully, but these errors were encountered:
apr_int64_t
is used almost everywhere. Sometimes it's not needed (i.e. the WebSocket protocol version), sometimes anapr_size_t
should be there instead (i.e. when calculating buffer sizes), and sometimes we should probably useapr_uint64_t
because negative values are unnecessary.The text was updated successfully, but these errors were encountered: