Tanaki
Tanaki

Reputation: 2635

AWS lib3s C/C++ Library Sample Code / Tutorials

I have downloaded and looked over the code for libs3, a library written for C/C++ that interacts with Amazon S3. This library uses a couple of concepts I am not completely comfortable with, so I am curious as to whether or not people know of any tutorials or sample programs that utilize this library.

Upvotes: 6

Views: 7168

Answers (2)

user1922061
user1922061

Reputation:

Give http://ceph.com/docs/master/radosgw/s3/cpp/, a read; there are several examples there. Additionally, the source code has some good examples such as https://github.com/ceph/libs3/blob/master/src/s3.c#L1396 which is an example of putObject.

Upvotes: 2

Tanaki
Tanaki

Reputation: 2635

The only place I have found reasonable examples is by examining the header files for libs3, and by looking through the source code of the s3.c application now included with the library.

Upvotes: 0

Related Questions