mirror of
https://github.com/ceph/go-ceph
synced 2024-12-12 09:26:52 +00:00
b3ed5036f3
These versions of ceph have not been supported for the last few release of go-ceph. Signed-off-by: John Mulligan <jmulligan@redhat.com>
13 lines
257 B
Go
13 lines
257 B
Go
// +build !nautilus
|
|
|
|
package rbd
|
|
|
|
// #include <rbd/librbd.h>
|
|
import "C"
|
|
|
|
const (
|
|
// ImageOptionMirrorImageMode is the representation of
|
|
// RBD_IMAGE_OPTION_MIRROR_IMAGE_MODE from librbd
|
|
ImageOptionMirrorImageMode = C.RBD_IMAGE_OPTION_MIRROR_IMAGE_MODE
|
|
)
|