lib/libcrypto/x509/x509_local.h
285
STACK_OF(OPENSSL_STRING) *hosts; /* Set of acceptable names */
lib/libcrypto/x509/x509_vfy.c
182
n = sk_OPENSSL_STRING_num(vpm->hosts);
lib/libcrypto/x509/x509_vfy.c
187
name = sk_OPENSSL_STRING_value(vpm->hosts, i);
lib/libcrypto/x509/x509_vfy.c
201
if (vpm->hosts && x509_vfy_check_hosts(x, vpm) <= 0) {
lib/libcrypto/x509/x509_vpm.c
129
if (mode == SET_HOST && param->hosts) {
lib/libcrypto/x509/x509_vpm.c
130
sk_OPENSSL_STRING_pop_free(param->hosts, str_free);
lib/libcrypto/x509/x509_vpm.c
131
param->hosts = NULL;
lib/libcrypto/x509/x509_vpm.c
139
if (param->hosts == NULL &&
lib/libcrypto/x509/x509_vpm.c
140
(param->hosts = sk_OPENSSL_STRING_new_null()) == NULL) {
lib/libcrypto/x509/x509_vpm.c
145
if (!sk_OPENSSL_STRING_push(param->hosts, copy)) {
lib/libcrypto/x509/x509_vpm.c
147
if (sk_OPENSSL_STRING_num(param->hosts) == 0) {
lib/libcrypto/x509/x509_vpm.c
148
sk_OPENSSL_STRING_free(param->hosts);
lib/libcrypto/x509/x509_vpm.c
149
param->hosts = NULL;
lib/libcrypto/x509/x509_vpm.c
173
sk_OPENSSL_STRING_pop_free(param->hosts, str_free);
lib/libcrypto/x509/x509_vpm.c
174
param->hosts = NULL;
lib/libcrypto/x509/x509_vpm.c
301
if (test_x509_verify_param_copy(hosts, NULL)) {
lib/libcrypto/x509/x509_vpm.c
302
if (dest->hosts) {
lib/libcrypto/x509/x509_vpm.c
303
sk_OPENSSL_STRING_pop_free(dest->hosts, str_free);
lib/libcrypto/x509/x509_vpm.c
304
dest->hosts = NULL;
lib/libcrypto/x509/x509_vpm.c
306
if (src->hosts) {
lib/libcrypto/x509/x509_vpm.c
307
dest->hosts = sk_OPENSSL_STRING_deep_copy(src->hosts);
lib/libcrypto/x509/x509_vpm.c
308
if (dest->hosts == NULL)
regress/usr.bin/ssh/unittests/hostkeys/test_iterate.c
107
if (expected->l.hosts != NULL)
regress/usr.bin/ssh/unittests/hostkeys/test_iterate.c
108
ASSERT_STRING_EQ(l->hosts, expected->l.hosts);
sbin/iked/parse.y
2713
int rdomain, struct ipsec_hosts *hosts,
sbin/iked/parse.y
2830
if (hosts->src && hosts->src->next == NULL)
sbin/iked/parse.y
2831
ipa = hosts->src;
sbin/iked/parse.y
2832
if (hosts->dst && hosts->dst->next == NULL)
sbin/iked/parse.y
2833
ipb = hosts->dst;
sbin/iked/parse.y
3104
for (ipa = hosts->src, ipb = hosts->dst; ipa && ipb;
sbin/iked/parse.y
3195
if (hosts != NULL) {
sbin/iked/parse.y
3196
iaw_free(hosts->src);
sbin/iked/parse.y
3197
iaw_free(hosts->dst);
sbin/iked/parse.y
3198
free(hosts);
sbin/iked/parse.y
418
struct ipsec_hosts *hosts;
sbin/iked/parse.y
466
%type <v.hosts> hosts hosts_list
sbin/iked/parse.y
699
hosts_list : hosts { $$ = $1; }
sbin/iked/parse.y
700
| hosts_list comma hosts {
sbin/iked/parse.y
716
hosts : FROM host port TO host port {
sbin/ipsecctl/parse.y
241
struct ipsec_hosts hosts;
sbin/ipsecctl/parse.y
2483
create_sa(u_int8_t satype, u_int8_t tmode, struct ipsec_hosts *hosts,
sbin/ipsecctl/parse.y
2499
r->src = hosts->src;
sbin/ipsecctl/parse.y
2500
r->dst = hosts->dst;
sbin/ipsecctl/parse.y
2564
create_flow(u_int8_t dir, u_int8_t proto, struct ipsec_hosts *hosts,
sbin/ipsecctl/parse.y
2582
r->src = hosts->src;
sbin/ipsecctl/parse.y
2583
r->sport = hosts->sport;
sbin/ipsecctl/parse.y
2584
r->dst = hosts->dst;
sbin/ipsecctl/parse.y
2585
r->dport = hosts->dport;
sbin/ipsecctl/parse.y
2586
if ((hosts->sport != 0 || hosts->dport != 0) &&
sbin/ipsecctl/parse.y
2623
free(hosts->src);
sbin/ipsecctl/parse.y
2624
hosts->src = NULL;
sbin/ipsecctl/parse.y
2625
free(hosts->dst);
sbin/ipsecctl/parse.y
2626
hosts->dst = NULL;
sbin/ipsecctl/parse.y
2861
create_ike(u_int8_t proto, struct ipsec_hosts *hosts,
sbin/ipsecctl/parse.y
2875
r->src = hosts->src;
sbin/ipsecctl/parse.y
2876
r->sport = hosts->sport;
sbin/ipsecctl/parse.y
2877
r->dst = hosts->dst;
sbin/ipsecctl/parse.y
2878
r->dport = hosts->dport;
sbin/ipsecctl/parse.y
2879
if ((hosts->sport != 0 || hosts->dport != 0) &&
sbin/ipsecctl/parse.y
2928
free(hosts->src);
sbin/ipsecctl/parse.y
2929
hosts->src = NULL;
sbin/ipsecctl/parse.y
2930
free(hosts->dst);
sbin/ipsecctl/parse.y
2931
hosts->dst = NULL;
sbin/ipsecctl/parse.y
296
%type <v.hosts> hosts
sbin/ipsecctl/parse.y
350
tcpmd5rule : TCPMD5 hosts spispec authkeyspec {
sbin/ipsecctl/parse.y
364
sarule : satype tmode hosts spispec udpencap transforms authkeyspec
sbin/ipsecctl/parse.y
379
flowrule : FLOW satype dir proto hosts peers ids type {
sbin/ipsecctl/parse.y
392
ikerule : IKE ikemode satype tmode proto hosts peers
sbin/ipsecctl/parse.y
409
struct ipsec_hosts hosts;
sbin/ipsecctl/parse.y
420
hosts.src = host_v4("0.0.0.0/0", 1);
sbin/ipsecctl/parse.y
421
hosts.sport = htons(0);
sbin/ipsecctl/parse.y
422
hosts.dst = host_v4("0.0.0.0/0", 1);
sbin/ipsecctl/parse.y
423
hosts.dport = htons(0);
sbin/ipsecctl/parse.y
425
r = create_ike(proto, &hosts, phase1mode, phase2mode,
sbin/ipsecctl/parse.y
483
hosts : FROM host port TO host port {
sbin/unwind/libunbound/iterator/iter_fwd.c
223
for(p = s->hosts; p; p = p->next) {
sbin/unwind/libunbound/iterator/iter_hints.c
226
for(p = s->hosts; p; p = p->next) {
sbin/unwind/libunbound/services/cache/infra.c
1192
size_t s = sizeof(*infra) + slabhash_get_mem(infra->hosts);
sbin/unwind/libunbound/services/cache/infra.c
355
infra->hosts = slabhash_create(cfg->infra_cache_slabs,
sbin/unwind/libunbound/services/cache/infra.c
358
if(!infra->hosts) {
sbin/unwind/libunbound/services/cache/infra.c
432
slabhash_delete(infra->hosts);
sbin/unwind/libunbound/services/cache/infra.c
457
if(!slabhash_is_size(infra->hosts, maxmem, cfg->infra_cache_slabs) ||
sbin/unwind/libunbound/services/cache/infra.c
523
return slabhash_lookup(infra->hosts, k.entry.hash, &k, wr);
sbin/unwind/libunbound/services/cache/infra.c
629
slabhash_insert(infra->hosts, e->hash, e, data, NULL);
sbin/unwind/libunbound/services/cache/infra.c
691
slabhash_insert(infra->hosts, e->hash, e, e->data, NULL);
sbin/unwind/libunbound/services/cache/infra.c
772
slabhash_insert(infra->hosts, e->hash, e, e->data, NULL);
sbin/unwind/libunbound/services/cache/infra.c
828
slabhash_insert(infra->hosts, e->hash, e, e->data, NULL);
sbin/unwind/libunbound/services/cache/infra.h
127
struct slabhash* hosts;
sbin/unwind/libunbound/util/config_file.c
1669
config_delstrlist(p->hosts);
sbin/unwind/libunbound/util/config_file.h
822
struct config_strlist* hosts;
sbin/unwind/libunbound/util/configparser.y
3110
if(!cfg_strlist_insert(&cfg_parser->cfg->stubs->hosts, $2))
sbin/unwind/libunbound/util/configparser.y
3182
if(!cfg_strlist_insert(&cfg_parser->cfg->forwards->hosts, $2))
usr.bin/getent/getent.c
60
static int hosts(int, char *[]);
usr.bin/getent/getent.c
83
{ "hosts", hosts, "stdio dns", NULL },
usr.bin/rdist/gram.y
410
insert(char *label, struct namelist *files, struct namelist *hosts,
usr.bin/rdist/gram.y
418
files, hosts, scmds, getnlstr(files));
usr.bin/rdist/gram.y
421
hosts = expand(hosts, E_ALL);
usr.bin/rdist/gram.y
422
for (h = hosts; h != NULL; lasth = h, h = h->n_next,
usr.bin/rdist/rdist.c
358
struct namelist *files, *hosts;
usr.bin/rdist/rdist.c
385
hosts = expand(&tnl, E_ALL);
usr.bin/rdist/rdist.c
398
debugmsg(DM_MISC, "host = %s", getnlstr(hosts));
usr.bin/rdist/rdist.c
400
insert(NULL, files, hosts, scmds);
usr.bin/rup/rup.c
54
} *hosts;
usr.bin/rup/rup.c
64
if (!hosts)
usr.bin/rup/rup.c
67
for (hp = hosts; hp != NULL; hp = hp->next) {
usr.bin/rup/rup.c
84
hp->next = hosts;
usr.bin/rup/rup.c
85
hosts = hp;
usr.bin/ssh/clientloop.c
2083
hostspec_is_complex(const char *hosts)
usr.bin/ssh/clientloop.c
2088
if (strchr(hosts, '*') != NULL || strchr(hosts, '?') != NULL)
usr.bin/ssh/clientloop.c
2091
if ((cp = strchr(hosts, ',')) == NULL)
usr.bin/ssh/clientloop.c
2134
if (ctx->ip_str != NULL && strchr(l->hosts, ',') != NULL) {
usr.bin/ssh/clientloop.c
2153
if (hostspec_is_complex(l->hosts)) {
usr.bin/ssh/clientloop.c
2200
hashed ? "[HASHED]" : l->hosts);
usr.bin/ssh/hostfile.c
842
lineinfo.hosts = cp;
usr.bin/ssh/hostfile.c
847
if ((s = match_maybe_hashed(host, lineinfo.hosts,
usr.bin/ssh/hostfile.c
850
path, linenum, lineinfo.hosts);
usr.bin/ssh/hostfile.c
860
if ((s = match_maybe_hashed(ip, lineinfo.hosts,
usr.bin/ssh/hostfile.c
864
lineinfo.hosts);
usr.bin/ssh/hostfile.h
98
const char *hosts; /* Raw hosts text, may be hashed or list multiple */
usr.bin/ssh/ssh-keygen.c
1118
char *hashed, *cp, *hosts, *ohosts;
usr.bin/ssh/ssh-keygen.c
1119
int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
usr.bin/ssh/ssh-keygen.c
1120
int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
usr.bin/ssh/ssh-keygen.c
1134
l->linenum, l->hosts);
usr.bin/ssh/ssh-keygen.c
1142
ohosts = hosts = xstrdup(l->hosts);
usr.bin/ssh/ssh-keygen.c
1143
while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
usr.bin/ssh/ssh-keyscan.c
309
char *hosts = c->c_output_name ? c->c_output_name : c->c_name;
usr.bin/ssh/ssh-keyscan.c
315
keyprint_one(hosts, key);
usr.bin/ssh/ssh-keyscan.c
318
ohosts = hosts = xstrdup(hosts);
usr.bin/ssh/ssh-keyscan.c
319
while ((host = strsep(&hosts, ",")) != NULL)
usr.bin/ssh/sshconnect.c
721
strncmp(l->hosts, HASH_MAGIC, strlen(HASH_MAGIC)) == 0 ?
usr.bin/ssh/sshconnect.c
722
"[hashed name]" : l->hosts);
usr.sbin/relayd/agentx_control.c
989
if (TAILQ_EMPTY(&table->hosts))
usr.sbin/relayd/check_icmp.c
125
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/check_icmp.c
146
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/check_icmp.c
199
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/config.c
281
TAILQ_FOREACH(h, &tb->hosts, entry) {
usr.sbin/relayd/config.c
332
TAILQ_FOREACH(host, &tb->hosts, entry) {
usr.sbin/relayd/config.c
371
TAILQ_INIT(&tb->hosts);
usr.sbin/relayd/config.c
414
TAILQ_INSERT_TAIL(&tb->hosts, host, entry);
usr.sbin/relayd/hce.c
111
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/hce.c
141
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/hce.c
166
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/hce.c
316
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/hce.c
324
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/parse.y
3003
while ((h = TAILQ_FIRST(&table->hosts)) != NULL) {
usr.sbin/relayd/parse.y
3004
TAILQ_REMOVE(&table->hosts, h, entry);
usr.sbin/relayd/parse.y
3015
TAILQ_FOREACH(h, &table->hosts, entry) {
usr.sbin/relayd/parse.y
3368
TAILQ_INIT(&tb->hosts);
usr.sbin/relayd/parse.y
3369
TAILQ_FOREACH(dsth, &dsttb->hosts, entry) {
usr.sbin/relayd/parse.y
3383
TAILQ_INSERT_TAIL(&tb->hosts, h, entry);
usr.sbin/relayd/parse.y
708
TAILQ_INIT(&tb->hosts);
usr.sbin/relayd/parse.y
712
if (TAILQ_EMPTY(&table->hosts)) {
usr.sbin/relayd/parse.y
737
TAILQ_INSERT_TAIL(&table->hosts, $1, entry);
usr.sbin/relayd/pfe.c
377
TAILQ_FOREACH(host, &rdr->table->hosts, entry)
usr.sbin/relayd/pfe.c
386
TAILQ_FOREACH(host, &rdr->backup->hosts, entry)
usr.sbin/relayd/pfe.c
405
&rlt->rlt_table->hosts, entry)
usr.sbin/relayd/pfe.c
427
TAILQ_FOREACH(host, &rt->rt_gwtable->hosts, entry)
usr.sbin/relayd/pfe.c
534
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/pfe.c
570
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/pfe.c
636
TAILQ_FOREACH(h, &t->hosts, entry)
usr.sbin/relayd/pfe.c
692
TAILQ_FOREACH(h, &t->hosts, entry)
usr.sbin/relayd/pfe_filter.c
176
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/pfe_filter.c
235
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/pfe_route.c
68
TAILQ_FOREACH(host, &rt->rt_gwtable->hosts, entry) {
usr.sbin/relayd/relay.c
1394
TAILQ_FOREACH(host, &table->hosts, entry) {
usr.sbin/relayd/relay.c
1897
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/relay.c
1906
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/relay.c
462
TAILQ_FOREACH(host, &rlt->rlt_table->hosts, entry) {
usr.sbin/relayd/relayd.c
1065
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/relayd.c
1157
TAILQ_FOREACH(host, &table->hosts, entry)
usr.sbin/relayd/relayd.c
536
while ((host = TAILQ_FIRST(&table->hosts)) != NULL) {
usr.sbin/relayd/relayd.c
537
TAILQ_REMOVE(&table->hosts, host, entry);
usr.sbin/relayd/relayd.h
523
struct hostlist hosts;
usr.sbin/smtpd/mta.c
136
static struct mta_host_tree hosts;
usr.sbin/smtpd/mta.c
2186
h = SPLAY_FIND(mta_host_tree, &hosts, &key);
usr.sbin/smtpd/mta.c
2191
SPLAY_INSERT(mta_host_tree, &hosts, h);
usr.sbin/smtpd/mta.c
2211
SPLAY_REMOVE(mta_host_tree, &hosts, h);
usr.sbin/smtpd/mta.c
342
SPLAY_FOREACH(host, mta_host_tree, &hosts) {
usr.sbin/smtpd/mta.c
545
SPLAY_INIT(&hosts);
usr.sbin/unbound/daemon/remote.c
2231
slabhash_clear(worker->env.infra_cache->hosts);
usr.sbin/unbound/daemon/remote.c
2253
slabhash_traverse(worker->env.infra_cache->hosts, 1, &infra_del_host,
usr.sbin/unbound/daemon/remote.c
3155
slabhash_traverse(arg.infra->hosts, 0, &dump_infra_host, (void*)&arg);
usr.sbin/unbound/daemon/remote.c
5120
+ getmem_config_strlist(s->hosts)
usr.sbin/unbound/daemon/remote.c
6200
slabhash_adjust_size(env->infra_cache->hosts, inframem);
usr.sbin/unbound/daemon/stats.c
307
s->svr.infra_cache_count = (long long)count_slabhash_entries(worker->env.infra_cache->hosts);
usr.sbin/unbound/iterator/iter_fwd.c
223
for(p = s->hosts; p; p = p->next) {
usr.sbin/unbound/iterator/iter_hints.c
226
for(p = s->hosts; p; p = p->next) {
usr.sbin/unbound/services/cache/infra.c
1192
size_t s = sizeof(*infra) + slabhash_get_mem(infra->hosts);
usr.sbin/unbound/services/cache/infra.c
355
infra->hosts = slabhash_create(cfg->infra_cache_slabs,
usr.sbin/unbound/services/cache/infra.c
358
if(!infra->hosts) {
usr.sbin/unbound/services/cache/infra.c
432
slabhash_delete(infra->hosts);
usr.sbin/unbound/services/cache/infra.c
457
if(!slabhash_is_size(infra->hosts, maxmem, cfg->infra_cache_slabs) ||
usr.sbin/unbound/services/cache/infra.c
523
return slabhash_lookup(infra->hosts, k.entry.hash, &k, wr);
usr.sbin/unbound/services/cache/infra.c
629
slabhash_insert(infra->hosts, e->hash, e, data, NULL);
usr.sbin/unbound/services/cache/infra.c
691
slabhash_insert(infra->hosts, e->hash, e, e->data, NULL);
usr.sbin/unbound/services/cache/infra.c
772
slabhash_insert(infra->hosts, e->hash, e, e->data, NULL);
usr.sbin/unbound/services/cache/infra.c
828
slabhash_insert(infra->hosts, e->hash, e, e->data, NULL);
usr.sbin/unbound/services/cache/infra.h
127
struct slabhash* hosts;
usr.sbin/unbound/smallapp/unbound-checkconf.c
326
for(h=s->hosts; h; h=h->next) {
usr.sbin/unbound/util/config_file.c
1669
config_delstrlist(p->hosts);
usr.sbin/unbound/util/config_file.h
822
struct config_strlist* hosts;
usr.sbin/unbound/util/configparser.y
3110
if(!cfg_strlist_insert(&cfg_parser->cfg->stubs->hosts, $2))
usr.sbin/unbound/util/configparser.y
3182
if(!cfg_strlist_insert(&cfg_parser->cfg->forwards->hosts, $2))
usr.sbin/ypserv/revnetgroup/revnetgroup.c
100
hosts = 1;
usr.sbin/ypserv/revnetgroup/revnetgroup.c
111
if (hosts == -1)
usr.sbin/ypserv/revnetgroup/revnetgroup.c
147
if (hosts) {
usr.sbin/ypserv/revnetgroup/revnetgroup.c
81
int hosts = -1, i;
usr.sbin/ypserv/revnetgroup/revnetgroup.c
89
if (hosts != -1) {
usr.sbin/ypserv/revnetgroup/revnetgroup.c
93
hosts = 0;
usr.sbin/ypserv/revnetgroup/revnetgroup.c
96
if (hosts != -1) {