diff options
author | 2017-01-23 01:04:23 +0000 | |
---|---|---|
committer | 2017-01-23 01:04:23 +0000 | |
commit | a444fc60ee1199bcb344a2c74c5b65dac92dc563 (patch) | |
tree | 668f04d29b843d5e0ed934d1715dd279f6bba183 /lib/libssl/ssl.h | |
parent | Make the art interface a bit more generic by not depending on sockaddr (diff) | |
download | wireguard-openbsd-a444fc60ee1199bcb344a2c74c5b65dac92dc563.tar.xz wireguard-openbsd-a444fc60ee1199bcb344a2c74c5b65dac92dc563.zip |
Remove heartbeat related fields from the SSL_CTX, which are unused
(thankfully).
Diffstat (limited to 'lib/libssl/ssl.h')
-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) */ |