]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/auth/cephx/CephxServiceHandler.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / auth / cephx / CephxServiceHandler.h
index 28d24f1ecad375a8895cf028552e2e3d8df2d234..e6e093ee4c7c187e313ba30ef2c640679148988b 100644 (file)
@@ -32,23 +32,23 @@ public:
   ~CephxServiceHandler() override {}
   
   int handle_request(
-    bufferlist::const_iterator& indata,
+    ceph::buffer::list::const_iterator& indata,
     size_t connection_secret_required_length,
-    bufferlist *result_bl,
+    ceph::buffer::list *result_bl,
     AuthCapsInfo *caps,
     CryptoKey *session_key,
     std::string *connection_secret) override;
 
 private:
   int do_start_session(bool is_new_global_id,
-                      bufferlist *result_bl,
+                      ceph::buffer::list *result_bl,
                       AuthCapsInfo *caps) override;
 
   int verify_old_ticket(const CephXAuthenticate& req,
                        CephXServiceTicketInfo& old_ticket_info,
                        bool& should_enc_ticket);
   void build_cephx_response_header(int request_type, int status,
-                                  bufferlist& bl);
+                                  ceph::buffer::list& bl);
 };
 
 #endif