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
Due to an unsafe cast in wolfSSL_writev() the total amount of data that can be sent at once is INT_MAX bytes despite the API allowing an array of up to (INT_MAX * size_t) chunks to be passed in.
The result is files greater than INT_MAX bytes (~2GB) cannot be sent (including headers).
Work around this limitation, and consider sending a patch to wolfssl to fix this brokeness.
The text was updated successfully, but these errors were encountered:
Due to an unsafe cast in wolfSSL_writev() the total amount of data that can be sent at once is INT_MAX bytes despite the API allowing an array of up to (INT_MAX * size_t) chunks to be passed in.
The result is files greater than INT_MAX bytes (~2GB) cannot be sent (including headers).
Work around this limitation, and consider sending a patch to wolfssl to fix this brokeness.
The text was updated successfully, but these errors were encountered: