mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Defer unknown QUIC ctrls to the SSL object for TLS
If the QUIC oject receives a ctrl it does not recognise, the chances are it is intended for the underlying SSL object - so we forward unknown ctrls there. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20514)
This commit is contained in:
parent
8b399c5e51
commit
f8ffab0d52
@ -537,7 +537,8 @@ long ossl_quic_ctrl(SSL *s, int cmd, long larg, void *parg)
|
||||
qc->ssl_mode &= ~(uint32_t)larg;
|
||||
return qc->ssl_mode;
|
||||
default:
|
||||
return 0;
|
||||
/* Probably a TLS related ctrl. Defer to our internal SSL object */
|
||||
return SSL_ctrl(qc->tls, cmd, larg, parg);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user