diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-10 18:40:56 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-10 18:40:56 +0000 |
commit | 67b6d460f3dce0e0d023b3fc5371ad715eb55c47 (patch) | |
tree | 0dc43e3ea57da67775798f2ea53515e48eb40adf /lib/libssl/ssl_locl.h | |
parent | adfaf00da89703bd47b1adac5c04ac926d1c509e (diff) |
Annotate the security callback and the security ex_data as deliberately
not exposed in the public API.
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 7ac9ddebdda..0dc555f9dbd 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.412 2022/07/07 13:04:39 tb Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.413 2022/07/10 18:40:55 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -381,9 +381,9 @@ typedef struct ssl_cert_st { int dhe_params_auto; int (*security_cb)(const SSL *s, const SSL_CTX *ctx, int op, int bits, - int nid, void *other, void *ex_data); + int nid, void *other, void *ex_data); /* Not exposed in API. */ int security_level; - void *security_ex_data; /* XXX: do we really need to support this? */ + void *security_ex_data; /* Not exposed in API. */ int references; /* >1 only if SSL_copy_session_id is used */ } SSL_CERT; |