diff options
author | Matt Caswell <matt@openssl.org> | 2022-07-19 16:49:51 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2022-08-18 17:38:13 +0200 |
commit | 81c9ebd9099e7aac92a8c855a9ae1a30bad1d9cc (patch) | |
tree | f32287812c805c95f6eaeb2a796c644e78273a66 /ssl/ssl_local.h | |
parent | Standardise some DTLS record layer naming (diff) | |
download | openssl-81c9ebd9099e7aac92a8c855a9ae1a30bad1d9cc.tar.xz openssl-81c9ebd9099e7aac92a8c855a9ae1a30bad1d9cc.zip |
Remove some unnecessary function pointers from OSSL_RECORD_METHOD
We had some temporary function pointers in OSSL_RECORD_METHOD which were
only necessary during the process of refactoring the read record layer.
These are no longer required so can be removed.
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18132)
Diffstat (limited to 'ssl/ssl_local.h')
-rw-r--r-- | ssl/ssl_local.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h index b544c39c70..8633b59d0f 100644 --- a/ssl/ssl_local.h +++ b/ssl/ssl_local.h @@ -1773,6 +1773,8 @@ struct ssl_connection_st { OSSL_RECORD_LAYER *rrl; /* BIO to store data destined for the next record layer epoch */ BIO *rrlnext; + /* Default read buffer length to be passed to the record layer */ + size_t default_read_buf_len; /* Default password callback. */ pem_password_cb *default_passwd_callback; |