Struct tor_cell::chancell::codec::ChannelCodec
source · pub struct ChannelCodec { /* private fields */ }Expand description
This object can be used to encode and decode channel cells.
NOTE: only link protocol versions 3 and higher are supported. VERSIONS cells are not supported via the encoder/decoder, since VERSIONS cells always use a two-byte circuit-ID for backwards compatibility with protocol versions < 4.
The implemented format is one of the following:
Variable-length cells (since protocol versions 2 and 3 respectively):
ⓘ
u32 circid;
u8 command;
u16 len;
u8 body[len];Fixed-width cells (since protocol version 1 and 4 respectively):
ⓘ
u32 circid;
u8 command;
u8 body[509];