Documentation ¶
Index ¶
Constants ¶
View Source
const ( N = 0xA0 // noop sigil byte Z1 = 0x20 // 1-zero sigil byte Z2 = 0x40 // 2-zero sigil byte Z3 = 0x60 // 3-zero sigil byte F2 = 0xC0 // 2-FF sigil byte F3 = 0xE0 // 3-FF sigil byte F4 = 0x80 // 4-FF sigil byte R2 = 0x08 // 2-repeat sigil byte R3 = 0x10 // 3-repeat sigil byte R4 = 0x18 // 4-repeat sigil byte Reserved = 0x00 // reserved sigil byte )
Variables ¶
This section is empty.
Functions ¶
func Decode ¶
Decode decodes a TCOBS frame `in` (without 0-delimiter) to `d` and returns as `n` the valid data length from the end in `d`. ATTENTION: d is filled from the end! decoded := d[len(d)-n:] is the final result. In case of an error n is 0. n can be 0 without having an error. Framing with 0-delimiter to be done before is assumed, so no 0-checks performed. For details see TCOBSSpecification.md.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.