diff options
author | tb <> | 2022-07-10 18:40:55 +0000 |
---|---|---|
committer | tb <> | 2022-07-10 18:40:55 +0000 |
commit | 1f2016d97c6f08e84ebcbfec834d87e6de6843d4 (patch) | |
tree | 17b2bc27ed39004388f3aa425d8a821b66a74e56 /src | |
parent | 7d887b9aa507bc493c58cc3a0f9ba22de1287268 (diff) | |
download | openbsd-1f2016d97c6f08e84ebcbfec834d87e6de6843d4.tar.gz openbsd-1f2016d97c6f08e84ebcbfec834d87e6de6843d4.tar.bz2 openbsd-1f2016d97c6f08e84ebcbfec834d87e6de6843d4.zip |
Annotate the security callback and the security ex_data as deliberately
not exposed in the public API.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 7ac9ddebdd..0dc555f9db 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_locl.h,v 1.412 2022/07/07 13:04:39 tb Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.413 2022/07/10 18:40:55 tb 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 | * |
@@ -381,9 +381,9 @@ typedef struct ssl_cert_st { | |||
381 | int dhe_params_auto; | 381 | int dhe_params_auto; |
382 | 382 | ||
383 | int (*security_cb)(const SSL *s, const SSL_CTX *ctx, int op, int bits, | 383 | int (*security_cb)(const SSL *s, const SSL_CTX *ctx, int op, int bits, |
384 | int nid, void *other, void *ex_data); | 384 | int nid, void *other, void *ex_data); /* Not exposed in API. */ |
385 | int security_level; | 385 | int security_level; |
386 | void *security_ex_data; /* XXX: do we really need to support this? */ | 386 | void *security_ex_data; /* Not exposed in API. */ |
387 | 387 | ||
388 | int references; /* >1 only if SSL_copy_session_id is used */ | 388 | int references; /* >1 only if SSL_copy_session_id is used */ |
389 | } SSL_CERT; | 389 | } SSL_CERT; |