diff options
author | Adam C. Emerson <aemerson@redhat.com> | 2019-03-29 03:00:38 +0100 |
---|---|---|
committer | Adam C. Emerson <aemerson@redhat.com> | 2019-03-29 15:30:39 +0100 |
commit | 251a4aaaba0af309685f7c3343e4e6874758699d (patch) | |
tree | 3ae33dc22a1a13d66c3a58f9e965278998f0358b /src/auth/AuthServiceHandler.h | |
parent | auth: Update AuthServer.h to work without using namespace (diff) | |
download | ceph-251a4aaaba0af309685f7c3343e4e6874758699d.tar.xz ceph-251a4aaaba0af309685f7c3343e4e6874758699d.zip |
auth: Update AuthServiceHandler.h to work without using namespace
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
Diffstat (limited to 'src/auth/AuthServiceHandler.h')
-rw-r--r-- | src/auth/AuthServiceHandler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/auth/AuthServiceHandler.h b/src/auth/AuthServiceHandler.h index 9f695bfdf97..ed2c532f028 100644 --- a/src/auth/AuthServiceHandler.h +++ b/src/auth/AuthServiceHandler.h @@ -18,7 +18,7 @@ #include <stddef.h> // for NULL #include <stdint.h> // for uint64_t #include "common/entity_name.h" // for EntityName -#include "include/buffer_fwd.h" // for bufferlist +#include "include/buffer_fwd.h" // for ceph::buffer::list class CephContext; class KeyServer; @@ -38,13 +38,13 @@ public: virtual int start_session(const EntityName& name, size_t connection_secret_required_length, - bufferlist *result, + ceph::buffer::list *result, AuthCapsInfo *caps, CryptoKey *session_key, std::string *connection_secret) = 0; - virtual int handle_request(bufferlist::const_iterator& indata, + virtual int handle_request(ceph::buffer::list::const_iterator& indata, size_t connection_secret_required_length, - bufferlist *result, + ceph::buffer::list *result, uint64_t *global_id, AuthCapsInfo *caps, CryptoKey *session_key, |