From: Adam C. Emerson Date: Fri, 29 Mar 2019 02:00:38 +0000 (-0400) Subject: auth: Update AuthServiceHandler.h to work without using namespace X-Git-Tag: v15.0.0~19^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=251a4aaaba0af309685f7c3343e4e6874758699d;p=ceph.git auth: Update AuthServiceHandler.h to work without using namespace Signed-off-by: Adam C. Emerson --- 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 // 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,