diff options
author | Matt Caswell <matt@openssl.org> | 2022-07-19 15:49:51 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2022-08-18 16:38:13 +0100 |
commit | 81c9ebd9099e7aac92a8c855a9ae1a30bad1d9cc (patch) | |
tree | f32287812c805c95f6eaeb2a796c644e78273a66 /ssl/record/methods/recmethod_local.h | |
parent | 3a7a539ec542b239efd375f63da070a5230f4ae0 (diff) | |
download | openssl-new-81c9ebd9099e7aac92a8c855a9ae1a30bad1d9cc.tar.gz |
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/record/methods/recmethod_local.h')
-rw-r--r-- | ssl/record/methods/recmethod_local.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ssl/record/methods/recmethod_local.h b/ssl/record/methods/recmethod_local.h index 821737161f..d40cd54f9e 100644 --- a/ssl/record/methods/recmethod_local.h +++ b/ssl/record/methods/recmethod_local.h @@ -292,10 +292,4 @@ int tls_set_protocol_version(OSSL_RECORD_LAYER *rl, int version); void tls_set_plain_alerts(OSSL_RECORD_LAYER *rl, int allow); void tls_set_first_handshake(OSSL_RECORD_LAYER *rl, int first); void tls_set_max_pipelines(OSSL_RECORD_LAYER *rl, size_t max_pipelines); -SSL3_BUFFER *tls_get0_rbuf(OSSL_RECORD_LAYER *rl); -unsigned char *tls_get0_packet(OSSL_RECORD_LAYER *rl); -void tls_set0_packet(OSSL_RECORD_LAYER *rl, unsigned char *packet, - size_t packetlen); -size_t tls_get_packet_length(OSSL_RECORD_LAYER *rl); -void tls_reset_packet_length(OSSL_RECORD_LAYER *rl); int rlayer_setup_read_buffer(OSSL_RECORD_LAYER *rl); |