Make the one in CephxServiceHandler private and drop the stub in
AuthNoneServiceHandler.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
(cherry picked from commit
49cba02a750d4c1ab68399401f0c04f9c9be5b9e)
Conflicts:
src/auth/cephx/CephxServiceHandler.h [ bufferlist vs
ceph::buffer::list ]
src/auth/none/AuthNoneServiceHandler.h [ ditto ]
CryptoKey *session_key,
std::string *connection_secret) override;
- void build_cephx_response_header(int request_type, int status, bufferlist& bl);
+private:
+ void build_cephx_response_header(int request_type, int status,
+ bufferlist& bl);
};
#endif
std::string *connection_secret) override {
return 0;
}
- void build_cephx_response_header(int request_type, int status,
- bufferlist& bl) {
- }
};
#endif