diff options
Diffstat (limited to 'include/libzfs.h')
-rw-r--r-- | include/libzfs.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/libzfs.h b/include/libzfs.h index 561b34b87..df38d29e1 100644 --- a/include/libzfs.h +++ b/include/libzfs.h @@ -39,6 +39,7 @@ #include <sys/fs/zfs.h> #include <sys/avl.h> #include <ucred.h> +#include <libzfs_core.h> #ifdef __cplusplus extern "C" { @@ -614,13 +615,16 @@ typedef struct sendflags { /* show progress (ie. -v) */ boolean_t progress; + + /* WRITE_EMBEDDED records of type DATA are permitted */ + boolean_t embed_data; } sendflags_t; typedef boolean_t (snapfilter_cb_t)(zfs_handle_t *, void *); extern int zfs_send(zfs_handle_t *, const char *, const char *, sendflags_t *, int, snapfilter_cb_t, void *, nvlist_t **); -extern int zfs_send_one(zfs_handle_t *, const char *, int); +extern int zfs_send_one(zfs_handle_t *, const char *, int, enum lzc_send_flags); extern int zfs_promote(zfs_handle_t *); extern int zfs_hold(zfs_handle_t *, const char *, const char *, |