blob: 7e7e164bf622052158262026d76d9db1d077e4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CLS_LUA_CLIENT_HPP
#define CLS_LUA_CLIENT_HPP
#include <string>
#include "include/rados/librados.hpp"
namespace cls_lua_client {
int exec(librados::IoCtx& ioctx, const std::string& oid,
const std::string& script, const std::string& handler,
librados::bufferlist& inbl, librados::bufferlist& outbl);
}
#endif
|