diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-23 01:04:24 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-23 01:04:24 +0000 |
commit | ddfa1cd2e00230b9ead65410bad944f11aecab6f (patch) | |
tree | 4b6f8d7dc753a61cc3676f033fad49e14ed199ff /lib/libssl | |
parent | e6fe0fce88491f8a2372b45197683a5ad6f90a39 (diff) |
Remove heartbeat related fields from the SSL_CTX, which are unused
(thankfully).
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/ssl.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 9f9343e69de..5904872c92c 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.107 2017/01/23 00:12:54 jsing Exp $ */ +/* $OpenBSD: ssl.h,v 1.108 2017/01/23 01:04:23 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1136,14 +1136,6 @@ struct ssl_st { STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; /* What we'll do */ SRTP_PROTECTION_PROFILE *srtp_profile; /* What's been chosen */ - unsigned int tlsext_heartbeat; /* Is use of the Heartbeat extension negotiated? - 0: disabled - 1: enabled - 2: enabled, but not allowed to send Requests - */ - unsigned int tlsext_hb_pending; /* Indicates if a HeartbeatRequest is in flight */ - unsigned int tlsext_hb_seq; /* HeartbeatRequest sequence number */ - int renegotiate;/* 1 if we are renegotiating. * 2 if we are a server and are inside a handshake * (i.e. not just sending a HelloRequest) */ |