mirror of
https://github.com/ceph/ceph
synced 2024-12-15 16:07:00 +00:00
Merge pull request #10851 from atheism/rgw-s3-doc-update
doc/radosgw/s3/cpp.rst: update usage of libs3 APIs to make the examples work Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
commit
125f27e3e8
@ -105,7 +105,7 @@ for each bucket.
|
||||
&listServiceCallback
|
||||
};
|
||||
bool header_printed = false;
|
||||
S3_list_service(S3ProtocolHTTP, access_key, secret_key, host, 0, &listServiceHandler, &header_printed);
|
||||
S3_list_service(S3ProtocolHTTP, access_key, secret_key, host, 0, NULL, &listServiceHandler, &header_printed);
|
||||
|
||||
|
||||
Creating a Bucket
|
||||
@ -115,7 +115,7 @@ This creates a new bucket.
|
||||
|
||||
.. code-block:: cpp
|
||||
|
||||
S3_create_bucket(S3ProtocolHTTP, access_key, secret_key, host, sample_bucket, S3CannedAclPrivate, NULL, NULL, &responseHandler, NULL);
|
||||
S3_create_bucket(S3ProtocolHTTP, access_key, secret_key, NULL, host, sample_bucket, S3CannedAclPrivate, NULL, NULL, &responseHandler, NULL);
|
||||
|
||||
|
||||
Listing a Bucket's Content
|
||||
|
Loading…
Reference in New Issue
Block a user