ref: 803089a76171db1dd5b891fb6dfa1b7e7f3d50d2
dir: /protocol/sideband64k/band.go/
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 )