Home
last modified time | relevance | path

Searched refs:CompressionMethodId (Results 1 – 4 of 4) sorted by relevance

/webrtc/dtls/src/
H A Dcompression_methods.rs7 pub enum CompressionMethodId { enum
12 impl From<u8> for CompressionMethodId { implementation
15 0 => CompressionMethodId::Null, in from()
16 _ => CompressionMethodId::Unsupported, in from()
23 pub ids: Vec<CompressionMethodId>,
46 if id != CompressionMethodId::Unsupported { in unmarshal()
57 ids: vec![CompressionMethodId::Null], in default_compression_methods()
/webrtc/dtls/src/handshake/handshake_message_server_hello/
H A Dhandshake_message_server_hello_test.rs34 compression_method: CompressionMethodId::Null, in test_handshake_message_server_hello()
/webrtc/dtls/src/handshake/handshake_message_client_hello/
H A Dhandshake_message_client_hello_test.rs48 ids: vec![CompressionMethodId::Null], in test_handshake_message_client_hello()
/webrtc/dtls/src/handshake/
H A Dhandshake_message_server_hello.rs28 pub(crate) compression_method: CompressionMethodId,