Home
last modified time | relevance | path

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

/webrtc/stun/src/
H A Derror_code.rs104 pub const CODE_STALE_NONCE: ErrorCode = ErrorCode(438); constant
141 (CODE_STALE_NONCE, b"Stale Nonce".to_vec()),
/webrtc/stun/benches/
H A Dbench.rs14 use stun::error_code::{ErrorCode, ErrorCodeAttribute, CODE_STALE_NONCE};
121 let _ = CODE_STALE_NONCE.add_to(&mut m); in benchmark_error_code()
/webrtc/turn/src/client/
H A Drelay_conn.rs430 } else if code.code == CODE_STALE_NONCE { in create_permissions()
500 } else if code.code == CODE_STALE_NONCE { in refresh_allocation()
/webrtc/turn/src/server/
H A Drequest.rs189 self.respond_with_nonce(m, calling_method, CODE_STALE_NONCE) in authenticate_request()