mirror of
https://github.com/ceph/go-ceph
synced 2024-12-13 09:57:26 +00:00
87f4563118
Signed-off-by: Sven Anderson <sven@redhat.com>
14 lines
278 B
Go
14 lines
278 B
Go
//go:build !nautilus
|
|
// +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
|
|
)
|