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

123

/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dconf_api.h21 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
25 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
28 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
29 char *_CONF_get_string(const CONF *conf, const char *section,
31 long _CONF_get_number(const CONF *conf, const char *section,
34 int _CONF_new_data(CONF *conf);
35 void _CONF_free_data(CONF *conf);
H A Dconf.h39 CONF *(*create) (CONF_METHOD *meth);
40 int (*init) (CONF *conf);
41 int (*destroy) (CONF *conf);
42 int (*destroy_data) (CONF *conf);
43 int (*load_bio) (CONF *conf, BIO *bp, long *eline);
44 int (*dump) (const CONF *conf, BIO *bp);
45 int (*is_number) (const CONF *conf, char c);
46 int (*to_int) (const CONF *conf, char c);
47 int (*load) (CONF *conf, const char *name, long *eline);
59 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cn
[all...]
H A Dts.h524 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section);
525 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
528 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
532 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
534 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
536 int TS_CONF_set_signer_key(CONF *conf, const char *section,
539 int TS_CONF_set_signer_digest(CONF *conf, const char *section,
541 int TS_CONF_set_def_policy(CONF *conf, const char *section,
543 int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx);
544 int TS_CONF_set_digests(CONF *con
[all...]
/freebsd-13-stable/contrib/unbound/contrib/
H A Dunbound_cache.sh18 CONF="/etc/opt/csw/unbound"
48 $ECHO "filename - file to save/load dumped cache. If not specified, $CONF/$FNAME will be used instead."
78 elif [ ! -f "$CONF/$FNAME" ]; then
80 $ECHO "ERROR: File $CONF/$FNAME does not exists. Save it first."
90 $ECHO "Saving cache in $CONF/$FNAME..."
91 $UC dump_cache>$CONF/$FNAME
92 $LS -lh $CONF/$FNAME
106 $ECHO "Loading cache from saved $CONF/$FNAME..."
107 $LS -lh $CONF/$FNAME
109 $CAT $CONF/
[all...]
/freebsd-13-stable/usr.sbin/crunch/examples/
H A DMakefile9 CONF= $(CRUNCHED).conf macro
21 $(OUTPUTS): $(CONF)
22 MAKE=${MAKE} crunchgen ${.CURDIR}/$(CONF)
/freebsd-13-stable/contrib/sendmail/contrib/
H A Dmovemail.pl44 open CONF, "< $conffile"
47 read CONF, $conf, $len
49 close CONF;
/freebsd-13-stable/tools/tools/net80211/scripts/
H A Dsetup.tsn13 CONF=$TMPDIR/tsn-$WLAN.conf
36 rm -f $CONF" 0
53 makeconf $CONF
55 start_hostapd -K $CONF
H A Dsetup.updown.wpa15 CONF=$TMPDIR/bsd-$WLAN.conf
48 makeconf $CONF
49 start_hostapd $CONF&
57 rm -f $CONF
H A Dsetup.wpa12 CONF=$TMPDIR/bsd-$WLAN.conf
35 rm -f $CONF" 2
51 makeconf $CONF
53 start_hostapd -K $CONF
H A Dsetup.wpa1.aes13 CONF=$TMPDIR/bsd-$WLAN.conf
35 rm -f $CONF" 2
51 makeconf $CONF
53 start_hostapd -K $CONF
H A Dsetup.wpa1.tkip13 CONF=$TMPDIR/bsd-$WLAN.conf
35 rm -f $CONF" 2
51 makeconf $CONF
53 start_hostapd -K $CONF
H A Dsetup.wpa213 CONF=$TMPDIR/bsd-$WLAN.conf
35 rm -f $CONF" 2
52 makeconf $CONF
54 start_hostapd -K $CONF
H A Dsetup.wpa2.tkip13 CONF=$TMPDIR/bsd-$WLAN.conf
35 rm -f $CONF" 2
52 makeconf $CONF
54 start_hostapd -K $CONF
H A Dsetup.mixed12 CONF=$TMPDIR/bsd-$WPA_WLAN.conf
36 ifconfig $OPEN_WLAN destroy; rm -f $CONF" 2
60 makeconf $CONF $WPA_WLAN
62 start_hostapd -K $CONF
/freebsd-13-stable/crypto/openssl/crypto/conf/
H A Dconf_lib.c23 /* Init a 'CONF' structure from an old LHASH */
25 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
35 * The following section contains the "CONF classic" functions, rewritten in
36 * terms of the new CONF interface.
86 CONF ctmp;
103 CONF ctmp;
115 CONF ctmp;
131 CONF ctmp;
141 CONF ctmp;
164 CONF ctm
[all...]
H A Dconf_def.c40 static int is_keytype(const CONF *conf, char c, unsigned short type);
41 static char *eat_ws(CONF *conf, char *p);
42 static void trim_ws(CONF *conf, char *start);
43 static char *eat_alpha_numeric(CONF *conf, char *p);
44 static void clear_comments(CONF *conf, char *p);
45 static int str_copy(CONF *conf, char *section, char **to, char *from);
46 static char *scan_quote(CONF *conf, char *p);
47 static char *scan_dquote(CONF *conf, char *p);
55 static CONF *def_create(CONF_METHOD *meth);
56 static int def_init_default(CONF *con
[all...]
H A Dconf_api.c23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
36 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
48 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
70 char *_CONF_get_string(const CONF *conf, const char *section,
126 int _CONF_new_data(CONF *conf)
143 void _CONF_free_data(CONF *conf)
189 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section)
H A Dconf_mod.c59 static int module_run(const CONF *cnf, const char *name, const char *value,
66 const CONF *cnf);
67 static CONF_MODULE *module_load_dso(const CONF *cnf, const char *name,
70 /* Main function: load modules from a CONF structure */
72 int CONF_modules_load(const CONF *cnf, const char *appname,
116 CONF *conf = NULL;
151 static int module_run(const CONF *cnf, const char *name, const char *value,
188 static CONF_MODULE *module_load_dso(const CONF *cnf,
291 const CONF *cnf)
/freebsd-13-stable/contrib/bsnmp/snmpd/
H A Dsnmpd.sh36 CONF=/etc/snmpd.conf
48 if ${SNMPD} -c ${CONF} -p ${PID} ; then
/freebsd-13-stable/crypto/openssl/crypto/ts/
H A Dts_conf.c116 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section)
126 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
144 int TS_CONF_set_crypto_device(CONF *conf, const char *section,
188 int TS_CONF_set_signer_cert(CONF *conf, const char *section,
212 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
234 int TS_CONF_set_signer_key(CONF *conf, const char *section,
257 int TS_CONF_set_signer_digest(CONF *conf, const char *section,
281 int TS_CONF_set_def_policy(CONF *conf, const char *section,
305 int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx)
337 int TS_CONF_set_digests(CONF *con
[all...]
/freebsd-13-stable/tools/tools/tinybsd/
H A Dtinybsd57 CONF=$VAL
164 CONF=${CONF:-default}; export CONF
197 CONF=`confirm_action "$CONF" "Configuration name?"`
198 if [ ! -d "${CURRENTDIR}/conf/$CONF" ]
200 echo "${TS} Error: Could not find config (${CONF})"
235 echo "CONF=${CONF}"
[all...]
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Devp_cnf.c19 static int alg_module_init(CONF_IMODULE *md, const CONF *cnf)
/freebsd-13-stable/crypto/openssl/crypto/x509v3/
H A Dv3_conf.c22 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
33 /* CONF *conf: Config file */
36 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, const char *name,
53 /* CONF *conf: Config file */
55 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
67 /* CONF *conf: Config file */
69 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
300 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section,
331 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
342 int X509V3_EXT_CRL_add_nconf(CONF *con
[all...]
/freebsd-13-stable/contrib/bearssl/mk/
H A DNMake.mk32 CONF = Win macro
37 !include conf/$(CONF).mk
H A DSingleUnix.mk35 CONF = Unix macro
37 include conf/$(CONF).mk

Completed in 232 milliseconds

123