mirror of https://github.com/ceph/go-ceph
13 lines
274 B
Go
13 lines
274 B
Go
|
// +build !luminous,!mimic,!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
|
||
|
)
|