summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_local.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2022-07-19 15:49:51 +0100
committerMatt Caswell <matt@openssl.org>2022-08-18 16:38:13 +0100
commit81c9ebd9099e7aac92a8c855a9ae1a30bad1d9cc (patch)
treef32287812c805c95f6eaeb2a796c644e78273a66 /ssl/ssl_local.h
parent3a7a539ec542b239efd375f63da070a5230f4ae0 (diff)
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.h2
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;