Searched refs:ReconfigResult (Results 1 – 4 of 4) sorted by relevance
| /webrtc/sctp/src/param/ |
| H A D | param_reconfig_response.rs | 8 pub(crate) enum ReconfigResult { enum 20 impl fmt::Display for ReconfigResult { implementation 25 ReconfigResult::Denied => "2: Denied", in fmt() 38 impl From<u32> for ReconfigResult { implementation 39 fn from(v: u32) -> ReconfigResult { in from() argument 41 0 => ReconfigResult::SuccessNop, in from() 43 2 => ReconfigResult::Denied, in from() 44 3 => ReconfigResult::ErrorWrongSsn, in from() 47 6 => ReconfigResult::InProgress, in from() 48 _ => ReconfigResult::Unknown, in from() [all …]
|
| H A D | param_test.rs | 182 result: ReconfigResult::SuccessPerformed, in test_param_reconfig_response_success() 217 (ReconfigResult::SuccessNop, "0: Success - Nothing to do"), in test_reconfig_result_stringer() 218 (ReconfigResult::SuccessPerformed, "1: Success - Performed"), in test_reconfig_result_stringer() 219 (ReconfigResult::Denied, "2: Denied"), in test_reconfig_result_stringer() 220 (ReconfigResult::ErrorWrongSsn, "3: Error - Wrong SSN"), in test_reconfig_result_stringer() 222 ReconfigResult::ErrorRequestAlreadyInProgress, in test_reconfig_result_stringer() 226 ReconfigResult::ErrorBadSequenceNumber, in test_reconfig_result_stringer() 229 (ReconfigResult::InProgress, "6: In progress"), in test_reconfig_result_stringer()
|
| /webrtc/sctp/src/association/ |
| H A D | mod.rs | 28 use crate::param::param_reconfig_response::{ParamReconfigResponse, ReconfigResult};
|
| H A D | association_internal.rs | 1765 let mut result = ReconfigResult::SuccessPerformed; in reset_streams_if_any() 1788 result = ReconfigResult::InProgress; in reset_streams_if_any()
|