summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-05-25 14:48:41 -0400
committerPauli <pauli@openssl.org>2021-06-02 12:40:02 +1000
commit6b750b89ee9ad3952b1b25e47b848abc8b60e7dd (patch)
tree15c5f382192521533d08ea291a6cab7855ad376f /doc
parentff234c6804571b70bc02ff44df1f42c4a3fe5cf1 (diff)
Add NCONF_get0_libctx()
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15466)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/NCONF_new_ex.pod7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/man3/NCONF_new_ex.pod b/doc/man3/NCONF_new_ex.pod
index 46c2e8c466..e03c801ce5 100644
--- a/doc/man3/NCONF_new_ex.pod
+++ b/doc/man3/NCONF_new_ex.pod
@@ -2,7 +2,8 @@
=head1 NAME
-NCONF_new_ex, NCONF_new, NCONF_free, NCONF_default, NCONF_load
+NCONF_new_ex, NCONF_new, NCONF_free, NCONF_default, NCONF_load,
+NCONF_get0_libctx
- functionality to Load and parse configuration files manually
=head1 SYNOPSIS
@@ -14,6 +15,7 @@ NCONF_new_ex, NCONF_new, NCONF_free, NCONF_default, NCONF_load
void NCONF_free(CONF *conf);
CONF_METHOD *NCONF_default(void);
int NCONF_load(CONF *conf, const char *file, long *eline);
+ OSSL_LIB_CTX *NCONF_get0_libctx(CONF *conf);
=head1 DESCRIPTION
@@ -32,6 +34,9 @@ the load failed on if they are not NULL.
NCONF_default() gets the default method table for processing a configuration file.
+NCONF_get0_libctx() gets the library context associated with the I<conf>
+parameter.
+
=head1 RETURN VALUES
NCONF_load() returns 1 on success or 0 on error.