summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl.h
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2017-01-23 00:12:54 +0000
committerjsing <jsing@openbsd.org>2017-01-23 00:12:54 +0000
commitcb38afac173e914f01c8d76a5d5d1e2d1b7933e6 (patch)
tree2381b8ff26670a3a5020ce0b6ec97a251d1e2454 /lib/libssl/ssl.h
parentTypo in comment. It's 'rtm_addrs', not 'rtm_addr' (diff)
downloadwireguard-openbsd-cb38afac173e914f01c8d76a5d5d1e2d1b7933e6.tar.xz
wireguard-openbsd-cb38afac173e914f01c8d76a5d5d1e2d1b7933e6.zip
Move the stats struct from SSL_CTX to internal.
ok beck@
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r--lib/libssl/ssl.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h
index fa1027fa281..9f9343e69de 100644
--- a/lib/libssl/ssl.h
+++ b/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl.h,v 1.106 2017/01/22 06:36:49 jsing Exp $ */
+/* $OpenBSD: ssl.h,v 1.107 2017/01/23 00:12:54 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -730,25 +730,6 @@ struct ssl_ctx_st {
SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl,
unsigned char *data, int len, int *copy);
- struct {
- int sess_connect; /* SSL new conn - started */
- int sess_connect_renegotiate;/* SSL reneg - requested */
- int sess_connect_good; /* SSL new conne/reneg - finished */
- int sess_accept; /* SSL new accept - started */
- int sess_accept_renegotiate;/* SSL reneg - requested */
- int sess_accept_good; /* SSL accept/reneg - finished */
- int sess_miss; /* session lookup misses */
- int sess_timeout; /* reuse attempt on timeouted session */
- int sess_cache_full; /* session removed due to full cache */
- int sess_hit; /* session reuse actually done */
- int sess_cb_hit; /* session-id that was not
- * in the cache was
- * passed back via the callback. This
- * indicates that the application is
- * supplying session-id's from other
- * processes - spooky :-) */
- } stats;
-
int references;
/* if defined, these override the X509_verify_cert() calls */