summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r--src/lib/libssl/ssl.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h
index 062c6dcbb9..a1ed22b778 100644
--- a/src/lib/libssl/ssl.h
+++ b/src/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl.h,v 1.246 2025/03/09 15:53:36 tb Exp $ */ 1/* $OpenBSD: ssl.h,v 1.247 2025/03/12 14:03:55 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -389,6 +389,10 @@ typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len,
389#define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x00010000L 389#define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x00010000L
390/* Disallow client initiated renegotiation. */ 390/* Disallow client initiated renegotiation. */
391#define SSL_OP_NO_CLIENT_RENEGOTIATION 0x00020000L 391#define SSL_OP_NO_CLIENT_RENEGOTIATION 0x00020000L
392/* Disallow client and server initiated renegotiation. */
393#define SSL_OP_NO_RENEGOTIATION 0x00040000L
394/* Allow client initiated renegotiation. */
395#define SSL_OP_ALLOW_CLIENT_RENEGOTIATION 0x00080000L
392/* If set, always create a new key when using tmp_dh parameters */ 396/* If set, always create a new key when using tmp_dh parameters */
393#define SSL_OP_SINGLE_DH_USE 0x00100000L 397#define SSL_OP_SINGLE_DH_USE 0x00100000L
394/* Set on servers to choose the cipher according to the server's 398/* Set on servers to choose the cipher according to the server's