minio-cpp
minio-cpp copied to clipboard
MinIO C++ Client SDK for Amazon S3 Compatible Cloud Storage
Here we continue to find errors with Windows. The meaning of `GetObject` is redifined inside the windows header wingdi.h ``` WINGDIAPI int WINAPI GetObjectA(__in HANDLE h, __in int c, __out_bcount_opt(c)...
Fixes https://github.com/minio/minio-cpp/issues/134
The expected signature generation is incomplete.
Fixes #132
There is still bunch of warnings regarding implicit conversion. Let's keep track of these: ``` minio-cpp/src/signer.cc:71:8: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] 69 |...
without this change, urls like 5.my.s3.cluster were misinterpreted and the '5' parsed as the port of the url. Bug: * the getline() function puts the entire input string into the...
Hi. I have a problem with the `filename` attribute type of `DownloadObjectArgs` and `UploadObjectArgs`. The current type is `std::string`, this leads to a file with utf-8 characters in the path...
The fix is to explicitly pass in std::ios::binary when opening the file stream. On Windows using a clang toolchain and libc++, trying to upload a binary file without the flag...