method
sections
v1_9_1_378 -
Show latest stable
- Class:
OpenSSL::Config
sections()public
No documentation available.
static VALUE
ossl_config_get_sections(VALUE self)
{
CONF *conf;
VALUE ary;
GetConfig(self, conf);
ary = rb_ary_new();
lh_doall_arg(conf->data, LHASH_DOALL_ARG_FN(get_conf_section), (void*)ary);
return ary;
}