method

sections

v1_9_2_180 - 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((_LHASH *)conf->data, LHASH_DOALL_ARG_FN(get_conf_section),
                 (void*)ary);

    return ary;
}