1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2025-07-14 19:59:11 +00:00
tar-split/tar/asm/options.go
2016-02-29 14:27:06 -05:00

18 lines
450 B
Go

package asm
// Defaults that matched existing behavior
var (
DefaultOutputOptions = OptFileCheck | OptSegment
DefaultInputOptions = OptFileCheck | OptSegment
)
// Options for processing the tar stream with additional options. Like
// including entries for on-disk verification.
type Options int
// The options include the FileCheckEntry, SegmentEntry, and for VerficationEntry
const (
OptFileCheck Options = 1 << iota
OptSegment
OptVerify
)