mirror of
https://github.com/ceph/go-ceph
synced 2025-03-31 23:58:08 +00:00
13 lines
221 B
Go
13 lines
221 B
Go
// +build !luminous
|
|
|
|
package rbd
|
|
|
|
// #include <rbd/librbd.h>
|
|
import "C"
|
|
|
|
const (
|
|
// ImageOptionFlatten is the representation of RBD_IMAGE_OPTION_FLATTEN
|
|
// from librbd
|
|
ImageOptionFlatten = C.RBD_IMAGE_OPTION_FLATTEN
|
|
)
|