From 251a4aaaba0af309685f7c3343e4e6874758699d Mon Sep 17 00:00:00 2001 From: "Adam C. Emerson" Date: Thu, 28 Mar 2019 22:00:38 -0400 Subject: [PATCH] auth: Update AuthServiceHandler.h to work without using namespace Signed-off-by: Adam C. Emerson --- src/auth/AuthServiceHandler.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/auth/AuthServiceHandler.h b/src/auth/AuthServiceHandler.h index 9f695bfdf973e..ed2c532f02840 100644 --- a/src/auth/AuthServiceHandler.h +++ b/src/auth/AuthServiceHandler.h @@ -18,7 +18,7 @@ #include // for NULL #include // 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, -- 2.47.3