We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SSL_TLSEXT_ERR_NOACK
1 parent 0f9bf7e commit d779fe2Copy full SHA for d779fe2
src/callbacks.rs
@@ -160,6 +160,9 @@ impl ServerNameCallbackConfig {
160
161
match result {
162
SSL_TLSEXT_ERR_OK => Ok(()),
163
+ // in practice no client does anything if SNI is not acked, and rustls
164
+ // acks any syntactically valid extension (and ignores invalid ones, because OpenSSL)
165
+ SSL_TLSEXT_ERR_NOACK => Ok(()),
166
_ => Err(Error::not_supported(
167
"SSL_CTX_servername_callback_func return error",
168
)),
0 commit comments