shithub: furgit

ref: dc634ee5daef8268203b26c1b14ab59c11f7f59c
dir: /format/sideband64k/band.go/

View raw version
package sideband64k

// Band identifies the sideband stream within a pkt-line data frame.
type Band uint8

const (
	// BandData carries primary payload bytes.
	BandData Band = 1
	// BandProgress carries progress or informational messages.
	BandProgress Band = 2
	// BandError carries fatal error messages.
	BandError Band = 3
)