diff options
author | Matt Caswell <matt@openssl.org> | 2022-10-17 16:13:18 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2022-10-20 15:39:33 +0200 |
commit | faa3e66c27a5e88f048f3ed30cfca297eda13eb6 (patch) | |
tree | 4ed6c50048f1ef1e51e796f01234d9692c366803 /ssl/record | |
parent | Remove dtls_write_records (diff) | |
download | openssl-faa3e66c27a5e88f048f3ed30cfca297eda13eb6.tar.xz openssl-faa3e66c27a5e88f048f3ed30cfca297eda13eb6.zip |
Remove some TODO(RECLAYER) comments now that DTLS has been moved
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19424)
Diffstat (limited to 'ssl/record')
-rw-r--r-- | ssl/record/rec_layer_s3.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ssl/record/rec_layer_s3.c b/ssl/record/rec_layer_s3.c index 5c0168aa43..bc115684b7 100644 --- a/ssl/record/rec_layer_s3.c +++ b/ssl/record/rec_layer_s3.c @@ -307,7 +307,6 @@ int ssl3_write_bytes(SSL *ssl, int type, const void *buf_, size_t len, * Some servers hang if initial client hello is larger than 256 bytes * and record version number > TLS 1.0 */ - /* TODO(RECLAYER): Does this also need to be in the DTLS equivalent code? */ recversion = (s->version == TLS1_3_VERSION) ? TLS1_2_VERSION : s->version; if (SSL_get_state(ssl) == TLS_ST_CW_CLNT_HELLO && !s->renegotiate |