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
Currently, ION is missing support for sending bundles over 4GB (maybe even as low as 2GB but I haven't tested that) when fragmenting. This is caused by the structs for Bundles, IncompleBundles, BundleId, and many fragment related functions using unsigned int or int where they should be using uvast and vast. While this is somewhat of an edge case (you probably shouldn't be sending huge bundles like this...), technically ION is not conforming to the BPV7 spec which allows for encoding the fragment offset and totaladu fields as CBOR integers of 8 bytes.
The text was updated successfully, but these errors were encountered:
Currently, ION is missing support for sending bundles over 4GB (maybe even as low as 2GB but I haven't tested that) when fragmenting. This is caused by the structs for Bundles, IncompleBundles, BundleId, and many fragment related functions using unsigned int or int where they should be using uvast and vast. While this is somewhat of an edge case (you probably shouldn't be sending huge bundles like this...), technically ION is not conforming to the BPV7 spec which allows for encoding the fragment offset and totaladu fields as CBOR integers of 8 bytes.
The text was updated successfully, but these errors were encountered: