Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2016-01-26 09:49:07 +0300
committerAdam Langley <agl@google.com>2016-01-26 18:48:51 +0300
commit7027d25c6b049de7a7e3130198657528f8f7d8ac (patch)
treeccc1641b57433e5f1f9ef17570fd068c023c3257 /include
parente5aa791a1cbd70c64a5cadaae71eda8f6d5aa992 (diff)
Also add a no-op stub for OPENSSL_config.
Apparently OpenSSL's API is made entirely of initialization functions. Some external libraries like to initialize with OPENSSL_config instead. Change-Id: I28efe97fc5eb21309f560c84112b80e947f8bb17 Reviewed-on: https://boringssl-review.googlesource.com/6981 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/conf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/openssl/conf.h b/include/openssl/conf.h
index 0d2b61d8..75f14f5b 100644
--- a/include/openssl/conf.h
+++ b/include/openssl/conf.h
@@ -152,6 +152,9 @@ OPENSSL_EXPORT int CONF_modules_load_file(CONF_MUST_BE_NULL *filename,
/* CONF_modules_free does nothing. */
OPENSSL_EXPORT void CONF_modules_free(void);
+/* OPENSSL_config does nothing. */
+OPENSSL_EXPORT void OPENSSL_config(CONF_MUST_BE_NULL *config_name);
+
#if defined(__cplusplus)
} /* extern C */