Home
last modified time | relevance | path

Searched refs:HandshakeError (Results 1 – 25 of 668) sorted by relevance

12345678910>>...27

/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-http-3.0.0-beta.9/src/ws/
H A Dmod.rs73 pub enum HandshakeError { enum
100 fn from(err: &HandshakeError) -> Self { in from()
121 HandshakeError::NoVersionHeader => { in from()
133 HandshakeError::BadWebsocketKey => { in from()
143 fn from(err: HandshakeError) -> Self { in from()
232 HandshakeError::GetMethodRequired, in test_handshake()
238 HandshakeError::NoWebsocketUpgrade, in test_handshake()
246 HandshakeError::NoWebsocketUpgrade, in test_handshake()
272 HandshakeError::NoVersionHeader, in test_handshake()
291 HandshakeError::UnsupportedVersion, in test_handshake()
[all …]
/dports/net/proby/proby-1.0.2/cargo-crates/actix-http-1.0.1/src/ws/
H A Dmod.rs65 pub enum HandshakeError { enum
86 impl ResponseError for HandshakeError { implementation
104 HandshakeError::BadWebsocketKey => { in error_response()
151 return Err(HandshakeError::NoVersionHeader); in verify_handshake()
197 HandshakeError::GetMethodRequired, in test_handshake()
203 HandshakeError::NoWebsocketUpgrade, in test_handshake()
211 HandshakeError::NoWebsocketUpgrade, in test_handshake()
222 HandshakeError::NoConnectionUpgrade, in test_handshake()
237 HandshakeError::NoVersionHeader, in test_handshake()
256 HandshakeError::UnsupportedVersion, in test_handshake()
[all …]
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/openssl-0.10.26/src/ssl/
H A Derror.rs142 pub enum HandshakeError<S> { enum
153 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
156 HandshakeError::SetupFailure(_) => "stream setup failed", in description()
157 HandshakeError::Failure(_) => "the handshake failed", in description()
164 HandshakeError::SetupFailure(ref e) => Some(e), in cause()
165 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in cause()
170 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
175 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => { in fmt()
187 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
188 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/tungstenite-0.13.0/src/handshake/
H A Dmod.rs39 pub fn handshake(mut self) -> Result<Role::FinalResult, HandshakeError<Role>> { in handshake()
44 return Err(HandshakeError::Interrupted(MidHandshake { machine: m, ..self })) in handshake()
57 pub enum HandshakeError<Role: HandshakeRole> { enum
64 impl<Role: HandshakeRole> fmt::Debug for HandshakeError<Role> { implementation
67 HandshakeError::Interrupted(_) => write!(f, "HandshakeError::Interrupted(...)"), in fmt()
68 HandshakeError::Failure(ref e) => write!(f, "HandshakeError::Failure({:?})", e), in fmt()
73 impl<Role: HandshakeRole> fmt::Display for HandshakeError<Role> { implementation
77 HandshakeError::Failure(ref e) => write!(f, "{}", e), in fmt()
82 impl<Role: HandshakeRole> ErrorTrait for HandshakeError<Role> {} implementation
84 impl<Role: HandshakeRole> From<Error> for HandshakeError<Role> { implementation
[all …]
/dports/net/oha/oha-0.4.7/cargo-crates/tungstenite-0.12.0/src/handshake/
H A Dmod.rs39 pub fn handshake(mut self) -> Result<Role::FinalResult, HandshakeError<Role>> { in handshake()
44 return Err(HandshakeError::Interrupted(MidHandshake { machine: m, ..self })) in handshake()
57 pub enum HandshakeError<Role: HandshakeRole> { enum
64 impl<Role: HandshakeRole> fmt::Debug for HandshakeError<Role> { implementation
67 HandshakeError::Interrupted(_) => write!(f, "HandshakeError::Interrupted(...)"), in fmt()
68 HandshakeError::Failure(ref e) => write!(f, "HandshakeError::Failure({:?})", e), in fmt()
73 impl<Role: HandshakeRole> fmt::Display for HandshakeError<Role> { implementation
77 HandshakeError::Failure(ref e) => write!(f, "{}", e), in fmt()
82 impl<Role: HandshakeRole> ErrorTrait for HandshakeError<Role> {} implementation
84 impl<Role: HandshakeRole> From<Error> for HandshakeError<Role> { implementation
[all …]
/dports/textproc/mdbook/mdBook-0.4.13/cargo-crates/tungstenite-0.12.0/src/handshake/
H A Dmod.rs39 pub fn handshake(mut self) -> Result<Role::FinalResult, HandshakeError<Role>> { in handshake()
44 return Err(HandshakeError::Interrupted(MidHandshake { machine: m, ..self })) in handshake()
57 pub enum HandshakeError<Role: HandshakeRole> { enum
64 impl<Role: HandshakeRole> fmt::Debug for HandshakeError<Role> { implementation
67 HandshakeError::Interrupted(_) => write!(f, "HandshakeError::Interrupted(...)"), in fmt()
68 HandshakeError::Failure(ref e) => write!(f, "HandshakeError::Failure({:?})", e), in fmt()
73 impl<Role: HandshakeRole> fmt::Display for HandshakeError<Role> { implementation
77 HandshakeError::Failure(ref e) => write!(f, "{}", e), in fmt()
82 impl<Role: HandshakeRole> ErrorTrait for HandshakeError<Role> {} implementation
84 impl<Role: HandshakeRole> From<Error> for HandshakeError<Role> { implementation
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-0.10.38/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/devel/sccache/sccache-0.2.15/cargo-crates/openssl-0.10.32/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/net/gemserv/gemserv-v0.4.5/cargo-crates/openssl-0.10.32/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/openssl-0.10.36/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-0.10.38/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/www/castor/castor-0.8.16/cargo-crates/openssl-0.10.30/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/lang/gleam/gleam-0.18.2/cargo-crates/openssl-0.10.38/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/openssl-0.10.32/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/dns/dog/dog-0.1.0/cargo-crates/openssl-0.10.30/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/net/routinator/routinator-0.10.2/cargo-crates/openssl-0.10.35/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/www/ffsend/ffsend-ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98/cargo-crates/openssl-0.10.36/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/www/rearx/rearx-0.1.4/cargo-crates/openssl-0.10.32/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/openssl-0.10.30/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/openssl-0.10.30/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-0.10.32/src/ssl/
H A Derror.rs139 pub enum HandshakeError<S> { enum
150 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
153 HandshakeError::SetupFailure(ref e) => Some(e), in source()
154 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
159 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
162 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
163 HandshakeError::Failure(ref s) => { in fmt()
170 HandshakeError::WouldBlock(ref s) => { in fmt()
182 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
183 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-0.10.36/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-0.10.33/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/openssl-0.10.38/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]
/dports/net/krill/krill-0.9.4/cargo-crates/openssl-0.10.36/src/ssl/
H A Derror.rs138 pub enum HandshakeError<S> { enum
149 impl<S: fmt::Debug> StdError for HandshakeError<S> { implementation
152 HandshakeError::SetupFailure(ref e) => Some(e), in source()
153 HandshakeError::Failure(ref s) | HandshakeError::WouldBlock(ref s) => Some(s.error()), in source()
158 impl<S: fmt::Debug> fmt::Display for HandshakeError<S> { implementation
161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt()
162 HandshakeError::Failure(ref s) => { in fmt()
169 HandshakeError::WouldBlock(ref s) => { in fmt()
181 impl<S> From<ErrorStack> for HandshakeError<S> { implementation
182 fn from(e: ErrorStack) -> HandshakeError<S> { in from()
[all …]

12345678910>>...27