func V22Bytes(f Framer) []byte { headBytes := make([]byte, 0, V22FrameHeaderSize) headBytes = append(headBytes, f.Id()...) headBytes = append(headBytes, encodedbytes.NormBytes(uint32(f.Size()))[1:]...) return append(headBytes, f.Bytes()...) }
func V23Bytes(f Framer) []byte { headBytes := make([]byte, 0, FrameHeaderSize) headBytes = append(headBytes, f.Id()...) headBytes = append(headBytes, encodedbytes.NormBytes(uint32(f.Size()))...) headBytes = append(headBytes, f.StatusFlags(), f.FormatFlags()) return append(headBytes, f.Bytes()...) }