diff options
author | Richard Levitte <levitte@openssl.org> | 2016-11-15 14:55:40 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-03-29 13:50:59 +0100 |
commit | 558ea84743918f7a93bfbfc259f86ad1fa4c8de9 (patch) | |
tree | 16690b411af8e6456852f57d41b0aff86a4ecf16 /ssl/t1_trce.c | |
parent | Windows, VMS: build fixes (diff) | |
download | openssl-558ea84743918f7a93bfbfc259f86ad1fa4c8de9.tar.xz openssl-558ea84743918f7a93bfbfc259f86ad1fa4c8de9.zip |
Remove heartbeats completely
Fixes #4856
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1928)
Diffstat (limited to 'ssl/t1_trce.c')
-rw-r--r-- | ssl/t1_trce.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index 656fefe896..9368baf1e7 100644 --- a/ssl/t1_trce.c +++ b/ssl/t1_trce.c @@ -468,7 +468,6 @@ static const ssl_trace_tbl ssl_exts_tbl[] = { {TLSEXT_TYPE_srp, "srp"}, {TLSEXT_TYPE_signature_algorithms, "signature_algorithms"}, {TLSEXT_TYPE_use_srtp, "use_srtp"}, - {TLSEXT_TYPE_heartbeat, "tls_heartbeat"}, {TLSEXT_TYPE_application_layer_protocol_negotiation, "application_layer_protocol_negotiation"}, {TLSEXT_TYPE_signed_certificate_timestamp, "signed_certificate_timestamps"}, @@ -783,9 +782,6 @@ static int ssl_print_extension(BIO *bio, int indent, int server, } break; - case TLSEXT_TYPE_heartbeat: - return 0; - case TLSEXT_TYPE_session_ticket: if (extlen != 0) ssl_print_hex(bio, indent + 4, "ticket", ext, extlen); |