Home
last modified time | relevance | path

Searched refs:ChunkType (Results 1 – 9 of 9) sorted by relevance

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs9 pub(crate) const CT_PAYLOAD_DATA: ChunkType = ChunkType(0);
10 pub(crate) const CT_INIT: ChunkType = ChunkType(1);
11 pub(crate) const CT_INIT_ACK: ChunkType = ChunkType(2);
12 pub(crate) const CT_SACK: ChunkType = ChunkType(3);
13 pub(crate) const CT_HEARTBEAT: ChunkType = ChunkType(4);
14 pub(crate) const CT_HEARTBEAT_ACK: ChunkType = ChunkType(5);
15 pub(crate) const CT_ABORT: ChunkType = ChunkType(6);
16 pub(crate) const CT_SHUTDOWN: ChunkType = ChunkType(7);
18 pub(crate) const CT_ERROR: ChunkType = ChunkType(9);
21 pub(crate) const CT_ECNE: ChunkType = ChunkType(12);
[all …]
H A Dchunk_header.rs23 pub(crate) typ: ChunkType,
49 let typ = ChunkType(reader.get_u8()); in unmarshal()
H A Dchunk_forward_tsn.rs143 typ: ChunkType(0), in header()
H A Dchunk_test.rs28 (ChunkType(255), "Unknown ChunkType: 255"), in test_chunk_type_string()
/webrtc/rtcp/src/extended_report/
H A Drle.rs7 pub enum ChunkType { enum
45 ChunkType::RunLength => { in fmt()
50 ChunkType::TerminatingNull => write!(f, "[TerminatingNull]"), in fmt()
56 pub fn chunk_type(&self) -> ChunkType { in chunk_type() argument
58 ChunkType::TerminatingNull in chunk_type()
60 ChunkType::RunLength in chunk_type()
62 ChunkType::BitVector in chunk_type()
69 if self.chunk_type() != ChunkType::RunLength { in run_type()
79 ChunkType::RunLength => self.0 & 0x3FFF, in value()
80 ChunkType::BitVector => self.0 & 0x7FFF, in value()
[all …]
H A Dmod.rs14 pub use rle::{Chunk, ChunkType, DuplicateRLEReportBlock, LossRLEReportBlock, RLEReportBlock};
/webrtc/sctp/src/param/
H A Dparam_supported_extensions.rs8 pub(crate) chunk_types: Vec<ChunkType>,
42 chunk_types.push(ChunkType(reader.get_u8())); in unmarshal()
H A Dparam_chunk_list.rs8 pub(crate) chunk_types: Vec<ChunkType>,
46 chunk_types.push(ChunkType(reader.get_u8())); in unmarshal()
/webrtc/sctp/src/
H A Dpacket.rs116 let ct = ChunkType(raw[offset]); in unmarshal()