blob: 6c5352cd1513dcdbb054006673e6641d2b40c125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef RBD_MIRROR_IMAGE_REPLAYER_UTILS_H
#define RBD_MIRROR_IMAGE_REPLAYER_UTILS_H
#include "include/rados/librados_fwd.hpp"
#include <string>
namespace cls { namespace journal { struct Client; } }
namespace librbd { namespace journal { struct MirrorPeerClientMeta; } }
namespace rbd {
namespace mirror {
namespace image_replayer {
namespace util {
std::string compute_image_spec(librados::IoCtx& io_ctx,
const std::string& image_name);
bool decode_client_meta(const cls::journal::Client& client,
librbd::journal::MirrorPeerClientMeta* client_meta);
} // namespace util
} // namespace image_replayer
} // namespace mirror
} // namespace rbd
#endif // RBD_MIRROR_IMAGE_REPLAYER_UTILS_H
|