]> git.proxmox.com Git - ceph.git/blame - ceph/src/cls/lua/cls_lua_client.h
update sources to v12.1.0
[ceph.git] / ceph / src / cls / lua / cls_lua_client.h
CommitLineData
7c673cae
FG
1#ifndef CLS_LUA_CLIENT_HPP
2#define CLS_LUA_CLIENT_HPP
3#include <string>
31f18b77
FG
4
5#include "include/buffer_fwd.h" // for bufferlist
6
7namespace librados {
8 class IoCtx;
9}
7c673cae
FG
10
11namespace cls_lua_client {
12 int exec(librados::IoCtx& ioctx, const std::string& oid,
13 const std::string& script, const std::string& handler,
14 librados::bufferlist& inbl, librados::bufferlist& outbl);
15}
16
17#endif