]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/auth/none/AuthNoneProtocol.h
update sources to 12.2.7
[ceph.git] / ceph / src / auth / none / AuthNoneProtocol.h
index 8683c567416e7af4db397af4c765ea83cf3e7fe5..662fdb51648f643ae7c06e2ce3bde22cb01950cd 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "auth/Auth.h"
 
+class CephContext;
+
 struct AuthNoneAuthorizer : public AuthAuthorizer {
   AuthNoneAuthorizer() : AuthAuthorizer(CEPH_AUTH_NONE) { }
   bool build_authorizer(const EntityName &ename, uint64_t global_id) {
@@ -27,6 +29,7 @@ struct AuthNoneAuthorizer : public AuthAuthorizer {
     return 0;
   }
   bool verify_reply(bufferlist::iterator& reply) override { return true; }
+  bool add_challenge(CephContext *cct, bufferlist& ch) override { return true; }
 };
 
 #endif