Home
last modified time | relevance | path

Searched refs:ErrorCode (Results 1 – 3 of 3) sorted by relevance

/webrtc/stun/src/
H A Derror_code.rs14 pub code: ErrorCode,
100 pub const CODE_TRY_ALTERNATE: ErrorCode = ErrorCode(300);
101 pub const CODE_BAD_REQUEST: ErrorCode = ErrorCode(400);
102 pub const CODE_UNAUTHORIZED: ErrorCode = ErrorCode(401);
103 pub const CODE_UNKNOWN_ATTRIBUTE: ErrorCode = ErrorCode(420);
104 pub const CODE_STALE_NONCE: ErrorCode = ErrorCode(438);
105 pub const CODE_ROLE_CONFLICT: ErrorCode = ErrorCode(487);
106 pub const CODE_SERVER_ERROR: ErrorCode = ErrorCode(500);
115 pub const CODE_FORBIDDEN: ErrorCode = ErrorCode(403); // Forbidden
125 pub const CODE_CONN_ALREADY_EXISTS: ErrorCode = ErrorCode(446);
[all …]
/webrtc/stun/benches/
H A Dbench.rs14 use stun::error_code::{ErrorCode, ErrorCodeAttribute, CODE_STALE_NONCE};
130 code: ErrorCode(404), in benchmark_error_code()
144 code: ErrorCode(404), in benchmark_error_code()
/webrtc/turn/src/server/
H A Drequest.rs234 response_code: ErrorCode, in respond_with_nonce() argument