blob: d6559930cdf547fcc38bbb51ab29e0e08ce5637f (
plain)
1
2
3
4
5
6
7
8
9
|
local ffi = require "ffi"
require "resty.openssl.include.ossl_typ"
ffi.cdef [[
CONF *NCONF_new(CONF_METHOD *meth);
void NCONF_free(CONF *conf);
int NCONF_load_bio(CONF *conf, BIO *bp, long *eline);
]]
|