aboutsummaryrefslogtreecommitdiff
path: root/format/sideband64k/band.go
blob: 73c61fd8f6afb155f66c63e7cae0abd51a37010f (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
)