]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/common/admin_socket.h
import ceph quincy 17.2.6
[ceph.git] / ceph / src / common / admin_socket.h
index c5d2b48e563bf0414f19e2e4362f7ad177a75886..3f364a5b711c7db22a9e14e13af5f64afd97d5fc 100644 (file)
@@ -60,6 +60,7 @@ public:
   virtual int call(
     std::string_view command,
     const cmdmap_t& cmdmap,
+    const ceph::buffer::list& inbl,
     ceph::Formatter *f,
     std::ostream& errss,
     ceph::buffer::list& out) = 0;
@@ -96,7 +97,7 @@ public:
     // by default, call the synchronous handler and then finish
     ceph::buffer::list out;
     std::ostringstream errss;
-    int r = call(command, cmdmap, f, errss, out);
+    int r = call(command, cmdmap, inbl, f, errss, out);
     on_finish(r, errss.str(), out);
   }
   virtual ~AdminSocketHook() {}