libs3 icon indicating copy to clipboard operation
libs3 copied to clipboard

Results 51 libs3 issues
Sort by recently updated
recently updated
newest added

Contrary to AWS, Backblaze adds `IsTruncated` (and others) only after the `CommonPrefixes` and `Contents`. It's pagination is 1000, what is a multiple of libs3's `MAX_COMMON_PREFIXES`. So if you have prefixes-only...

Since -Werror is used by default, warnings about calls to deprecated functions are treated as errors. Rewrite the code to not use functions deprecated in openssl 3.0.

When accessing bucket root, AWS tools send empty prefix (prefix=), contrary to libs3 that sends no prefix. But some AWS policy examples suggest conditions like: "Condition":{"StringEquals":{"s3:prefix":["","home/"],"s3:delimiter":["/"]}} With such conditions libs3...

Any chance of getting this software released under Apache V2 or BSD 3-clause licenses?

Fixes bji/libs3#80 See: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html and https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html

When an MPU object is created with `x-amz-copy-source`/`x-amz-copy-source-range`, libs3 was expecting the ETag in `CopyObjectResult/ETag` instead of `CopyPartResult/ETag`. Ref: https://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadUploadPartCopy.html