aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src/conf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openssl-sys/src/conf.rs')
-rw-r--r--openssl-sys/src/conf.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/openssl-sys/src/conf.rs b/openssl-sys/src/conf.rs
new file mode 100644
index 00000000..9b9d4b26
--- /dev/null
+++ b/openssl-sys/src/conf.rs
@@ -0,0 +1,7 @@
+use *;
+
+extern "C" {
+ pub fn NCONF_new(meth: *mut CONF_METHOD) -> *mut CONF;
+ pub fn NCONF_default() -> *mut CONF_METHOD;
+ pub fn NCONF_free(conf: *mut CONF);
+}