File tree 1 file changed +11
-2
lines changed 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -454,10 +454,19 @@ type SendOptions struct {
454
454
// From can optionally contain an older snapshot for an incremental send
455
455
From string `nvlist:"fromsnap,omitempty"`
456
456
457
+ // FromBookmark can optionally contain a bookmark which is used to reduce the amount of data sent
458
+ FromBookmark string `nvlist:"redactbook,omitempty"`
459
+
457
460
// These enable individual features for the send stream
458
461
LargeBlocks bool `nvlist:"largeblockok"`
459
- Embed bool `nvlist:"embedok"`
460
- Compress bool `nvlist:"compress"`
462
+ // Allows DRR_WRITE_EMBEDDED
463
+ Embed bool `nvlist:"embedok"`
464
+ // Allows compressed DRR_WRITE
465
+ Compress bool `nvlist:"compress"`
466
+ // Allows raw encrypted records
467
+ Raw bool `nvlist:"rawok"`
468
+ // Send a partially received snapshot
469
+ Saved bool `nvlist:"savedok"`
461
470
462
471
// These can optionally be set to resume a transfer (ZoL 0.7+)
463
472
ResumeObject uint64 `nvlist:"resume_object,omitempty"`
You can’t perform that action at this time.
0 commit comments