diff options
author | Neil Horman <nhorman@openssl.org> | 2024-10-05 15:51:00 +0200 |
---|---|---|
committer | Neil Horman <nhorman@openssl.org> | 2024-11-19 14:36:19 +0100 |
commit | 3eed43f8a12ef33d9788ef9476f76ff1a11dff87 (patch) | |
tree | 2ba85cd64b94bb88987d12c852beecf39e2eea05 /include | |
parent | Add tracing messages to the provider api (diff) | |
download | openssl-3eed43f8a12ef33d9788ef9476f76ff1a11dff87.tar.xz openssl-3eed43f8a12ef33d9788ef9476f76ff1a11dff87.zip |
Add a QUERY trace category
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25630)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/trace.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/openssl/trace.h b/include/openssl/trace.h index 98b4ea17cd..a6a291188b 100644 --- a/include/openssl/trace.h +++ b/include/openssl/trace.h @@ -57,9 +57,10 @@ extern "C" { # define OSSL_TRACE_CATEGORY_REF_COUNT 17 # define OSSL_TRACE_CATEGORY_HTTP 18 # define OSSL_TRACE_CATEGORY_PROVIDER 19 +# define OSSL_TRACE_CATEGORY_QUERY 20 /* Count of available categories. */ -# define OSSL_TRACE_CATEGORY_NUM 20 +# define OSSL_TRACE_CATEGORY_NUM 21 /* KEEP THIS LIST IN SYNC with trace_categories[] in crypto/trace.c */ /* Returns the trace category number for the given |name| */ |