Searched refs:conf (Results 1 - 25 of 894) sorted by relevance

1234567891011>>

/openbsd-current/sys/arch/armv7/include/
H A Dconf.h1 /* $OpenBSD: conf.h,v 1.1 2013/09/04 14:38:26 patrick Exp $ */
2 /* $NetBSD: conf.h,v 1.8 2002/02/10 12:26:03 chris Exp $ */
7 #include <sys/conf.h>
15 #include <arm/conf.h>
/openbsd-current/usr.sbin/smtpd/
H A Dconfig.c35 struct smtpd *conf = NULL; local
43 if ((conf = calloc(1, sizeof(*conf))) == NULL)
44 return conf;
46 (void)strlcpy(conf->sc_hostname, hostname, sizeof(conf->sc_hostname));
48 conf->sc_maxsize = DEFAULT_MAX_BODY_SIZE;
49 conf->sc_subaddressing_delim = SUBADDRESSING_DELIMITER;
50 conf->sc_ttl = SMTPD_QUEUE_EXPIRY;
51 conf
155 set_local(struct smtpd *conf, const char *hostname) argument
167 set_localaddrs(struct smtpd *conf, struct table *localnames) argument
[all...]
/openbsd-current/lib/libcrypto/conf/
H A Dconf_api.h63 #include <openssl/conf.h>
70 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,
81 int _CONF_new_data(CONF *conf);
82 void _CONF_free_data(CONF *conf);
H A Dconf_mall.c59 #include <openssl/conf.h>
H A Dconf_lib.c62 #include <openssl/conf.h>
71 CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash) argument
75 default_CONF_method->init(conf);
76 conf->data = hash;
92 CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file, long *eline)
103 ltmp = CONF_load_bio(conf, in, eline);
111 CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp, long *eline)
120 ltmp = CONF_load_bio(conf, btmp, eline);
127 CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp, long *eline)
132 CONF_set_nconf(&ctmp, conf);
252 NCONF_free(CONF *conf) argument
261 NCONF_free_data(CONF *conf) argument
270 NCONF_load(CONF *conf, const char *file, long *eline) argument
282 NCONF_load_fp(CONF *conf, FILE *fp, long *eline) argument
298 NCONF_load_bio(CONF *conf, BIO *bp, long *eline) argument
327 NCONF_get_string(const CONF *conf, const char *group, const char *name) argument
348 NCONF_get_number_e(const CONF *conf, const char *group, const char *name, long *result) argument
373 NCONF_dump_fp(const CONF *conf, FILE *out) argument
388 NCONF_dump_bio(const CONF *conf, BIO *out) argument
[all...]
H A Dconf_def.c59 /* Part of the code in here was originally in conf.c, which is now removed */
65 #include <openssl/conf.h>
75 static char *eat_ws(CONF *conf, char *p);
76 static char *eat_alpha_numeric(CONF *conf, char *p);
77 static void clear_comments(CONF *conf, char *p);
78 static int str_copy(CONF *conf, char *section, char **to, char *from);
79 static char *scan_quote(CONF *conf, char *p);
80 static char *scan_dquote(CONF *conf, char *p);
81 #define scan_esc(conf,p) (((IS_EOF((conf),(
149 def_init_default(CONF *conf) argument
162 def_init_WIN32(CONF *conf) argument
175 def_destroy(CONF *conf) argument
185 def_destroy_data(CONF *conf) argument
194 def_load(CONF *conf, const char *name, long *line) argument
215 def_load_bio(CONF *conf, BIO *in, long *line) argument
420 clear_comments(CONF *conf, char *p) argument
458 str_copy(CONF *conf, char *section, char **pto, char *from) argument
609 eat_ws(CONF *conf, char *p) argument
617 eat_alpha_numeric(CONF *conf, char *p) argument
631 scan_quote(CONF *conf, char *p) argument
651 scan_dquote(CONF *conf, char *p) argument
683 def_dump(const CONF *conf, BIO *out) argument
691 def_is_number(const CONF *conf, char c) argument
697 def_to_int(const CONF *conf, char c) argument
[all...]
H A Dconf.h1 /* $OpenBSD: conf.h,v 1.16 2022/07/12 14:42:48 kn Exp $ */
91 int (*init)(CONF *conf);
92 int (*destroy)(CONF *conf);
93 int (*destroy_data)(CONF *conf);
94 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
95 int (*dump)(const CONF *conf, BIO *bp);
96 int (*is_number)(const CONF *conf, char c);
97 int (*to_int)(const CONF *conf, char c);
98 int (*load)(CONF *conf, const char *name, long *eline);
121 void CONF_set_nconf(CONF *conf, LHASH_O
[all...]
H A Dconf_api.c59 /* Part of the code in here was originally in conf.c, which is now removed */
69 #include <openssl/conf.h>
75 LHASH_OF(CONF_VALUE) *conf);
83 _CONF_get_section(const CONF *conf, const char *section)
87 if ((conf == NULL) || (section == NULL))
91 v = lh_CONF_VALUE_retrieve(conf->data, &vv);
98 _CONF_get_section_values(const CONF *conf, const char *section)
102 v = _CONF_get_section(conf, section);
111 _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) argument
123 v = lh_CONF_VALUE_insert(conf
135 _CONF_get_string(const CONF *conf, const char *section, const char *name) argument
205 _CONF_free_data(CONF *conf) argument
223 value_free_hash_doall_arg(CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf) argument
254 _CONF_new_section(CONF *conf, const char *section) argument
[all...]
/openbsd-current/sys/arch/alpha/include/
H A Dconf.h1 /* $OpenBSD: conf.h,v 1.3 2003/06/04 18:04:42 nate Exp $ */
18 #include <sys/conf.h>
/openbsd-current/usr.bin/mandoc/
H A Dmanpath.c32 #define MAN_CONF_FILE "/etc/man.conf"
42 manconf_parse(struct manconf *conf, const char *file, char *pend, char *pbeg) argument
47 manpath_parseline(&conf->manpath, pbeg, 'm');
51 manpath_parseline(&conf->manpath, pend, 'M');
55 /* No MANPATH; use man.conf(5) only. */
58 /* Prepend man.conf(5) to MANPATH. */
62 /* Insert man.conf(5) into MANPATH. */
66 /* Append man.conf(5) to MANPATH. */
69 /* MANPATH overrides man.conf(5) completely. */
74 manpath_parseline(&conf
139 manconf_free(struct manconf *conf) argument
154 manconf_file(struct manconf *conf, const char *file, int use_path_from_file) argument
214 manconf_output(struct manoutput *conf, const char *cp, int fromfile) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/Data-Dumper/t/
H A Dtrailing_comma.t20 conf => { Indent => 0 },
25 conf => { Indent => 1 },
30 conf => { Indent => 2 },
35 conf => { Indent => 0 },
40 conf => { Indent => 1 },
45 conf => { Indent => 2 },
54 conf => { Indent => 0 },
59 conf => { Indent => 1 },
64 conf => { Indent => 2 },
69 conf
[all...]
/openbsd-current/sbin/unwind/
H A Dprintconf.c30 print_config(struct uw_conf *conf) argument
36 if (conf->res_pref.len > 0) {
38 for (i = 0; i < conf->res_pref.len; i++) {
40 uw_resolver_type_str[conf->res_pref.types[i]]);
45 if (!TAILQ_EMPTY(&conf->uw_forwarder_list) ||
46 !TAILQ_EMPTY(&conf->uw_dot_forwarder_list)) {
48 TAILQ_FOREACH(uw_forwarder, &conf->uw_forwarder_list, entry) {
55 TAILQ_FOREACH(uw_forwarder, &conf->uw_dot_forwarder_list,
69 if (conf->blocklist_file != NULL)
70 printf("block list \"%s\"%s\n", conf
[all...]
/openbsd-current/usr.sbin/ospf6d/
H A Dprintconf.c39 print_mainconf(struct ospfd_conf *conf) argument
41 printf("router-id %s\n", inet_ntoa(conf->rtr_id));
43 if (conf->flags & OSPFD_FLAG_NO_FIB_UPDATE)
48 printf("fib-priority %hhu\n", conf->fib_priority);
50 if (conf->rdomain)
51 printf("rdomain %d\n", conf->rdomain);
53 if (conf->flags & OSPFD_FLAG_STUB_ROUTER)
56 print_redistribute(conf);
57 print_rtlabel(conf);
59 printf("spf-delay %u\n", conf
73 print_redistribute(struct ospfd_conf *conf) argument
108 print_rtlabel(struct ospfd_conf *conf) argument
145 print_config(struct ospfd_conf *conf) argument
[all...]
/openbsd-current/usr.sbin/ripd/
H A Dprintconf.c37 print_mainconf(struct ripd_conf *conf) argument
39 if (conf->flags & RIPD_FLAG_NO_FIB_UPDATE)
44 printf("fib-priority %hhu\n", conf->fib_priority);
46 print_redistribute(conf);
48 if (conf->options & OPT_SPLIT_HORIZON)
50 else if (conf->options & OPT_SPLIT_POISONED)
55 if (conf->options & OPT_TRIGGERED_UPDATES)
71 print_redistribute(struct ripd_conf *conf) argument
75 SIMPLEQ_FOREACH(r, &conf->redist_list, entry) {
132 print_config(struct ripd_conf *conf) argument
[all...]
/openbsd-current/usr.sbin/sensorsd/
H A DMakefile4 MAN= sensorsd.8 sensorsd.conf.5
/openbsd-current/share/man/man5/
H A DMakefile6 defaultdomain.5 dir.5 disktab.5 elf.5 ethers.5 fbtab.5 files.conf.5 \
9 intro.5 login.conf.5 mandoc.db.5 mixerctl.conf.5 \
10 mk.conf.5 moduli.5 motd.5 mygate.5 myname.5 netgroup.5 passwd.5 \
11 pf.conf.5 pf.os.5 port-modules.5 cabal-module.5 \
15 ranlib.5 remote.5 resolv.conf.5 rpc.5 \
17 spamd.conf.5 sysctl.conf.5 utmp.5 wsconsctl.conf.5
/openbsd-current/etc/mail/
H A DMakefile8 ${INSTALL} -c -o root -g wheel -m 644 smtpd.conf \
9 ${DESTDIR}/etc/mail/smtpd.conf
10 ${INSTALL} -c -o root -g wheel -m 644 spamd.conf \
11 ${DESTDIR}/etc/mail/spamd.conf
/openbsd-current/usr.sbin/dvmrpd/
H A Dprintconf.c36 print_mainconf(struct dvmrpd_conf *conf) argument
38 if (conf->flags & DVMRPD_FLAG_NO_FIB_UPDATE)
66 print_config(struct dvmrpd_conf *conf) argument
71 print_mainconf(conf);
74 LIST_FOREACH(iface, &conf->iface_list, entry) {
/openbsd-current/gnu/usr.bin/perl/cpan/Config-Perl-V/t/
H A D10_base.t20 ok (my $conf = Config::Perl::V::myconfig, "Read config");
21 ok (exists $conf->{$_}, "Has $_ entry") for qw( build environment config inc );
22 is (lc $conf->{build}{osname}, lc $conf->{config}{osname}, "osname");
25 ok (my $info1 = Config::Perl::V::summary ($conf), "Get a summary for \$conf");
49 is_deeply (Config::Perl::V::myconfig, $conf,
54 ok ($conf = Config::Perl::V::myconfig ({ env => qr{^CPV_TEST_ENV$} }), "Read config plus ENV");
55 ok (exists $conf->{$_}, "Has $_ entry") for qw( build environment config inc environment );
56 ok (my $eh = $conf
[all...]
/openbsd-current/regress/usr.sbin/acme-client/
H A DMakefile34 etc/acme-client.conf: acme-client.conf
37 ${.CURDIR}/acme-client.conf >etc/acme-client.conf
39 etc/httpd.conf: httpd.conf
42 ${.CURDIR}/httpd.conf >etc/httpd.conf
45 httpd-start: etc/httpd.conf
46 ${SUDO} /usr/sbin/httpd -f ${.OBJDIR}/etc/httpd.conf
[all...]
/openbsd-current/gnu/usr.bin/cvs/contrib/
H A Dclmerge.in47 $conf = 0;
69 $conf = 1;
89 $conf = 0;
91 } elsif ($conf == 1) {
100 $conf = 2;
105 } elsif ($conf == 2) {
/openbsd-current/bin/chio/
H A DMakefile7 MAN= chio.1 chio.conf.5
/openbsd-current/regress/sbin/isakmpd/hmac/
H A DMakefile7 SRCS= hash.c hmactest.c conf.c log.c monitor.c util.c
/openbsd-current/regress/sbin/isakmpd/prf/
H A DMakefile7 SRCS= prf.c hash.c log.c prftest.c conf.c monitor.c util.c
/openbsd-current/regress/sbin/isakmpd/util/
H A DMakefile6 SRCS= log.c util.c utiltest.c conf.c monitor.c

Completed in 154 milliseconds

1234567891011>>