Searched refs:CONF (Results 1 - 25 of 113) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dconf_api.h70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *conf);
H A Dconf.h92 CONF *(*create)(CONF_METHOD *meth);
93 int (*init)(CONF *conf);
94 int (*destroy)(CONF *conf);
95 int (*destroy_data)(CONF *conf);
96 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
97 int (*dump)(const CONF *conf, BIO *bp);
98 int (*is_number)(const CONF *conf, char c);
99 int (*to_int)(const CONF *conf, char c);
100 int (*load)(CONF *conf, const char *name, long *eline);
109 typedef int conf_init_func(CONF_IMODULE *md, const CONF *cn
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/conf/
H A Dconf_api.h70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *conf);
H A Dconf.h92 CONF *(*create)(CONF_METHOD *meth);
93 int (*init)(CONF *conf);
94 int (*destroy)(CONF *conf);
95 int (*destroy_data)(CONF *conf);
96 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
97 int (*dump)(const CONF *conf, BIO *bp);
98 int (*is_number)(const CONF *conf, char c);
99 int (*to_int)(const CONF *conf, char c);
100 int (*load)(CONF *conf, const char *name, long *eline);
109 typedef int conf_init_func(CONF_IMODULE *md, const CONF *cn
[all...]
H A Dconf_lib.c66 const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT;
70 /* Init a 'CONF' structure from an old LHASH */
72 void CONF_set_nconf(CONF *conf, LHASH *hash)
81 /* The following section contains the "CONF classic" functions,
82 rewritten in terms of the new CONF interface. */
129 CONF ctmp;
148 CONF ctmp;
162 CONF ctmp;
179 CONF ctmp;
194 CONF ctm
[all...]
H A Dconf_def.c72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p);
75 static int str_copy(CONF *conf,char *section,char **to, char *from);
76 static char *scan_quote(CONF *conf, char *p);
77 static char *scan_dquote(CONF *conf, char *p);
80 static CONF *def_create(CONF_METHOD *meth);
81 static int def_init_default(CONF *conf);
82 static int def_init_WIN32(CONF *conf);
83 static int def_destroy(CONF *con
[all...]
H A Dconf_api.c84 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
96 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
108 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
132 char *_CONF_get_string(const CONF *conf, const char *section, const char *name)
167 long _CONF_get_number(CONF *conf, char *section, char *name)
185 int _CONF_new_data(CONF *conf)
199 void _CONF_free_data(CONF *conf)
277 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/conf/
H A Dconf_api.h70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section,
83 int _CONF_new_data(CONF *conf);
84 void _CONF_free_data(CONF *conf);
H A Dconf.h89 CONF *(*create) (CONF_METHOD *meth);
90 int (*init) (CONF *conf);
91 int (*destroy) (CONF *conf);
92 int (*destroy_data) (CONF *conf);
93 int (*load_bio) (CONF *conf, BIO *bp, long *eline);
94 int (*dump) (const CONF *conf, BIO *bp);
95 int (*is_number) (const CONF *conf, char c);
96 int (*to_int) (const CONF *conf, char c);
97 int (*load) (CONF *conf, const char *name, long *eline);
109 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cn
[all...]
H A Dconf_lib.c67 const char CONF_version[] = "CONF" OPENSSL_VERSION_PTEXT;
71 /* Init a 'CONF' structure from an old LHASH */
73 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
83 * The following section contains the "CONF classic" functions, rewritten in
84 * terms of the new CONF interface.
134 CONF ctmp;
151 CONF ctmp;
163 CONF ctmp;
178 CONF ctmp;
192 CONF ctm
[all...]
H A Dconf_def.c72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p);
75 static int str_copy(CONF *conf, char *section, char **to, char *from);
76 static char *scan_quote(CONF *conf, char *p);
77 static char *scan_dquote(CONF *conf, char *p);
80 static CONF *def_create(CONF_METHOD *meth);
81 static int def_init_default(CONF *conf);
82 static int def_init_WIN32(CONF *conf);
83 static int def_destroy(CONF *con
[all...]
H A Dconf_api.c81 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
94 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
106 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
128 char *_CONF_get_string(const CONF *conf, const char *section,
164 long _CONF_get_number(CONF *conf, char *section, char *name)
210 int _CONF_new_data(CONF *conf)
222 void _CONF_free_data(CONF *conf)
273 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/conf/
H A Dconf_api.h70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section,
83 int _CONF_new_data(CONF *conf);
84 void _CONF_free_data(CONF *conf);
H A Dconf.h89 CONF *(*create) (CONF_METHOD *meth);
90 int (*init) (CONF *conf);
91 int (*destroy) (CONF *conf);
92 int (*destroy_data) (CONF *conf);
93 int (*load_bio) (CONF *conf, BIO *bp, long *eline);
94 int (*dump) (const CONF *conf, BIO *bp);
95 int (*is_number) (const CONF *conf, char c);
96 int (*to_int) (const CONF *conf, char c);
97 int (*load) (CONF *conf, const char *name, long *eline);
109 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cn
[all...]
H A Dconf_lib.c67 const char CONF_version[] = "CONF" OPENSSL_VERSION_PTEXT;
71 /* Init a 'CONF' structure from an old LHASH */
73 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
83 * The following section contains the "CONF classic" functions, rewritten in
84 * terms of the new CONF interface.
134 CONF ctmp;
151 CONF ctmp;
163 CONF ctmp;
178 CONF ctmp;
192 CONF ctm
[all...]
H A Dconf_def.c72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p);
75 static int str_copy(CONF *conf, char *section, char **to, char *from);
76 static char *scan_quote(CONF *conf, char *p);
77 static char *scan_dquote(CONF *conf, char *p);
80 static CONF *def_create(CONF_METHOD *meth);
81 static int def_init_default(CONF *conf);
82 static int def_init_WIN32(CONF *conf);
83 static int def_destroy(CONF *con
[all...]
H A Dconf_api.c81 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
94 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
106 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
128 char *_CONF_get_string(const CONF *conf, const char *section,
164 long _CONF_get_number(CONF *conf, char *section, char *name)
210 int _CONF_new_data(CONF *conf)
222 void _CONF_free_data(CONF *conf)
273 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/cas/
H A Dgraphics.h32 int createimage(CONF *config, char *lines[IMG_TEXTLINES], char *path_for_picture);
H A Dconfigfile.h43 } CONF; typedef in typeref:struct:__anon75
46 int readconfig(CONF *config);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/test/
H A Dudevstart-test.pl37 open CONF, ">$udev_conf" || die "unable to create config file: $udev_conf";
38 print CONF "udev_root=\"$udev_root\"\n";
39 print CONF "udev_db=\"$udev_db\"\n";
40 print CONF "udev_rules=\"$udev_rules\"\n";
41 close CONF;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptpd/pptpd-1.3.4/tools/
H A Dvpnstats8 CONF=/etc/vpnstats.conf
9 if [ ! -f $CONF ]; then
10 echo "LOGFILE=/var/log/messages.1" > $CONF
11 echo "STATFILE=/var/log/vpnstats" >> $CONF
12 echo "TEMPFILE=/tmp/tmpvpnstats" >> $CONF
13 echo "SMTP=localhost" >> $CONF
14 echo "FROM=" >> $CONF
15 echo "TO=" >> $CONF
17 . $CONF
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/linux/
H A Dminidlna.init.d.script.tmpl23 CONF=/etc/minidlna.conf
24 ARGS="-f $CONF"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ts/
H A Dts_conf.c165 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section)
175 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
193 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
240 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
262 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
283 int TS_CONF_set_signer_key(CONF *conf, const char *section,
306 int TS_CONF_set_def_policy(CONF *conf, const char *section,
330 int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx)
361 int TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx)
397 int TS_CONF_set_accuracy(CONF *con
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ts/
H A Dts_conf.c165 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section)
175 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
193 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
240 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
262 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
283 int TS_CONF_set_signer_key(CONF *conf, const char *section,
306 int TS_CONF_set_def_policy(CONF *conf, const char *section,
330 int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx)
361 int TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx)
397 int TS_CONF_set_accuracy(CONF *con
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/x509v3/
H A Dv3_conf.c70 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
81 /* CONF *conf: Config file */
84 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
101 /* CONF *conf: Config file */
103 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
115 /* CONF *conf: Config file */
117 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
328 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
352 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
363 int X509V3_EXT_CRL_add_nconf(CONF *con
[all...]

Completed in 266 milliseconds

12345