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
The size of a Buffer cannot exceed 1GiB in some implementations, 2GiB in others. This means that packets cannot be larger than this, and that received messages cannot be larger than this.
The text was updated successfully, but these errors were encountered:
A data structure level way to fix this would be to implement an extended Buffer type. This is easier on the Javascript side since there is no such limitation on the array size. The standard defines that as 232-1 anyhow, which is larger than the maximum the current protocol allows.
The text was updated successfully, but these errors were encountered: