Searched refs:ChunkType (Results 1 – 9 of 9) sorted by relevance
| /webrtc/sctp/src/chunk/ |
| H A D | chunk_type.rs | 9 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 D | chunk_header.rs | 23 pub(crate) typ: ChunkType, 49 let typ = ChunkType(reader.get_u8()); in unmarshal()
|
| H A D | chunk_forward_tsn.rs | 143 typ: ChunkType(0), in header()
|
| H A D | chunk_test.rs | 28 (ChunkType(255), "Unknown ChunkType: 255"), in test_chunk_type_string()
|
| /webrtc/rtcp/src/extended_report/ |
| H A D | rle.rs | 7 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 D | mod.rs | 14 pub use rle::{Chunk, ChunkType, DuplicateRLEReportBlock, LossRLEReportBlock, RLEReportBlock};
|
| /webrtc/sctp/src/param/ |
| H A D | param_supported_extensions.rs | 8 pub(crate) chunk_types: Vec<ChunkType>, 42 chunk_types.push(ChunkType(reader.get_u8())); in unmarshal()
|
| H A D | param_chunk_list.rs | 8 pub(crate) chunk_types: Vec<ChunkType>, 46 chunk_types.push(ChunkType(reader.get_u8())); in unmarshal()
|
| /webrtc/sctp/src/ |
| H A D | packet.rs | 116 let ct = ChunkType(raw[offset]); in unmarshal()
|