Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19703)
if (!expect_quic_conn(qc))
return 0;
- /* Currently a no-op. */
+ /* TODO(QUIC); Currently a no-op. */
return 1;
}
if (!expect_quic_conn(qc))
return 0;
- /* Currently a no-op. */
+ /* TODO(QUIC): Currently a no-op. */
return 1;
}
ackm_data->is_ack_eliciting = 1;
if (max_streams > (((uint64_t)1) << 60)) {
- /* TODO: Protocol violation (FRAME_ENCODING_ERROR) */
ossl_quic_channel_raise_protocol_error(ch,
QUIC_ERR_FRAME_ENCODING_ERROR,
frame_type,
return 0;
/* Create and initialise cipher context. */
+ /* TODO(QUIC): Cipher fetch caching. */
if ((cipher = EVP_CIPHER_fetch(libctx, "AES-128-GCM", propq)) == NULL)
goto err;