Symbol: node_host
usr.sbin/pfctl/parse.y
1196
struct node_host *h = NULL, *hh;
usr.sbin/pfctl/parse.y
1333
struct node_host *h, *nh;
usr.sbin/pfctl/parse.y
1396
struct node_host *n;
usr.sbin/pfctl/parse.y
191
struct node_host *host;
usr.sbin/pfctl/parse.y
240
struct node_host *addr;
usr.sbin/pfctl/parse.y
2632
struct node_host *n;
usr.sbin/pfctl/parse.y
2809
struct node_host *n;
usr.sbin/pfctl/parse.y
2816
$$ = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/parse.y
2825
$$ = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/parse.y
2846
struct node_host *b, *e;
usr.sbin/pfctl/parse.y
2908
struct node_host *n;
usr.sbin/pfctl/parse.y
2924
$$ = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/parse.y
2937
$$ = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/parse.y
3005
$$ = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/parse.y
303
int disallow_table(struct node_host *, const char *);
usr.sbin/pfctl/parse.y
304
int disallow_urpf_failed(struct node_host *, const char *);
usr.sbin/pfctl/parse.y
305
int disallow_alias(struct node_host *, const char *);
usr.sbin/pfctl/parse.y
314
struct node_host *);
usr.sbin/pfctl/parse.y
320
struct node_host *, struct node_port *, struct node_host *,
usr.sbin/pfctl/parse.y
323
struct node_host *, struct node_proto *, struct node_os *,
usr.sbin/pfctl/parse.y
324
struct node_host *, struct node_port *, struct node_host *,
usr.sbin/pfctl/parse.y
340
void decide_address_family(struct node_host *, sa_family_t *);
usr.sbin/pfctl/parse.y
341
void remove_invalid_hosts(struct node_host **, sa_family_t *);
usr.sbin/pfctl/parse.y
342
int invalid_redirect(struct node_host *, sa_family_t);
usr.sbin/pfctl/parse.y
375
struct node_host *host;
usr.sbin/pfctl/parse.y
387
struct node_host *host;
usr.sbin/pfctl/parse.y
394
struct node_host *host;
usr.sbin/pfctl/parse.y
4245
$$ = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/parse.y
4400
disallow_table(struct node_host *h, const char *fmt)
usr.sbin/pfctl/parse.y
4411
disallow_urpf_failed(struct node_host *h, const char *fmt)
usr.sbin/pfctl/parse.y
4422
disallow_alias(struct node_host *h, const char *fmt)
usr.sbin/pfctl/parse.y
4671
struct node_host *h)
usr.sbin/pfctl/parse.y
4786
struct node_host *src_host, struct node_port *src_port,
usr.sbin/pfctl/parse.y
4787
struct node_host *dst_host, struct node_port *dst_port,
usr.sbin/pfctl/parse.y
5053
struct node_if *interfaces, struct node_host *rpool_hosts,
usr.sbin/pfctl/parse.y
5055
struct node_host *src_hosts, struct node_port *src_ports,
usr.sbin/pfctl/parse.y
5056
struct node_host *dst_hosts, struct node_port *dst_ports,
usr.sbin/pfctl/parse.y
5067
struct node_host *h;
usr.sbin/pfctl/parse.y
5084
LOOP_THROUGH(struct node_host, src_host, src_hosts,
usr.sbin/pfctl/parse.y
5087
LOOP_THROUGH(struct node_host, dst_host, dst_hosts,
usr.sbin/pfctl/parse.y
5219
FREE_LIST(struct node_host, src_hosts);
usr.sbin/pfctl/parse.y
5222
FREE_LIST(struct node_host, dst_hosts);
usr.sbin/pfctl/parse.y
5227
FREE_LIST(struct node_host, rpool_hosts);
usr.sbin/pfctl/parse.y
5943
decide_address_family(struct node_host *n, sa_family_t *af)
usr.sbin/pfctl/parse.y
5957
remove_invalid_hosts(struct node_host **nh, sa_family_t *af)
usr.sbin/pfctl/parse.y
5959
struct node_host *n = *nh, *prev = NULL;
usr.sbin/pfctl/parse.y
5964
struct node_host *next = n->next;
usr.sbin/pfctl/parse.y
5989
invalid_redirect(struct node_host *nh, sa_family_t af)
usr.sbin/pfctl/parse.y
5992
struct node_host *n;
usr.sbin/pfctl/pfctl_optimize.c
1223
struct node_host node_host;
usr.sbin/pfctl/pfctl_optimize.c
1239
memset(&node_host, 0, sizeof(node_host));
usr.sbin/pfctl/pfctl_optimize.c
1240
node_host.af = af;
usr.sbin/pfctl/pfctl_optimize.c
1241
node_host.addr = addr->addr;
usr.sbin/pfctl/pfctl_optimize.c
1245
&node_host.addr.v.a.addr, buf, sizeof(buf)),
usr.sbin/pfctl/pfctl_optimize.c
1246
unmask(&node_host.addr.v.a.mask, af));
usr.sbin/pfctl/pfctl_optimize.c
1249
if (append_addr_host((*tbl)->pt_buf, &node_host, 0, 0)) {
usr.sbin/pfctl/pfctl_optimize.c
1260
memcpy(ti->host, &node_host, sizeof(*ti->host));
usr.sbin/pfctl/pfctl_parser.c
1038
struct node_host *h;
usr.sbin/pfctl/pfctl_parser.c
1087
set_ipmask(struct node_host *h, u_int8_t b)
usr.sbin/pfctl/pfctl_parser.c
1112
check_netmask(struct node_host *h, sa_family_t af)
usr.sbin/pfctl/pfctl_parser.c
1114
struct node_host *n = NULL;
usr.sbin/pfctl/pfctl_parser.c
1138
struct node_host *iftab;
usr.sbin/pfctl/pfctl_parser.c
1144
struct node_host *n = NULL, *h = NULL;
usr.sbin/pfctl/pfctl_parser.c
1154
n = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/pfctl_parser.c
1224
struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1227
struct node_host *n;
usr.sbin/pfctl/pfctl_parser.c
1258
struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1265
struct node_host *n, *h = NULL;
usr.sbin/pfctl/pfctl_parser.c
1300
struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1303
struct node_host *p = NULL, *h = NULL, *n = NULL;
usr.sbin/pfctl/pfctl_parser.c
1343
n = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/pfctl_parser.c
1385
ifa_skip_if(const char *filter, struct node_host *p)
usr.sbin/pfctl/pfctl_parser.c
1406
struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1409
struct node_host *h = NULL;
usr.sbin/pfctl/pfctl_parser.c
1455
struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1458
struct node_host *n, *h = NULL;
usr.sbin/pfctl/pfctl_parser.c
1501
static struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1504
struct node_host *h = NULL;
usr.sbin/pfctl/pfctl_parser.c
1517
h = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/pfctl_parser.c
1530
struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1534
struct node_host *h = NULL;
usr.sbin/pfctl/pfctl_parser.c
1541
h = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/pfctl_parser.c
1560
struct node_host *
usr.sbin/pfctl/pfctl_parser.c
1564
struct node_host *n, *h = NULL;
usr.sbin/pfctl/pfctl_parser.c
1599
n = calloc(1, sizeof(struct node_host));
usr.sbin/pfctl/pfctl_parser.c
1644
struct node_host *h, *n;
usr.sbin/pfctl/pfctl_parser.c
1669
append_addr_host(struct pfr_buffer *b, struct node_host *n, int test, int not)
usr.sbin/pfctl/pfctl_parser.c
67
int ifa_skip_if(const char *filter, struct node_host *p);
usr.sbin/pfctl/pfctl_parser.c
69
struct node_host *ifa_grouplookup(const char *, int);
usr.sbin/pfctl/pfctl_parser.c
70
struct node_host *host_if(const char *, int);
usr.sbin/pfctl/pfctl_parser.c
71
static struct node_host *host_v4(const char *);
usr.sbin/pfctl/pfctl_parser.c
72
struct node_host *host_v6(const char *, int);
usr.sbin/pfctl/pfctl_parser.c
73
struct node_host *host_dns(const char *, int, int);
usr.sbin/pfctl/pfctl_parser.h
121
struct node_host *next;
usr.sbin/pfctl/pfctl_parser.h
122
struct node_host *tail;
usr.sbin/pfctl/pfctl_parser.h
208
struct node_host *host;
usr.sbin/pfctl/pfctl_parser.h
312
void set_ipmask(struct node_host *, u_int8_t);
usr.sbin/pfctl/pfctl_parser.h
313
int check_netmask(struct node_host *, sa_family_t);
usr.sbin/pfctl/pfctl_parser.h
315
struct node_host *ifa_exists(const char *);
usr.sbin/pfctl/pfctl_parser.h
316
struct node_host *ifa_lookup(const char *, int);
usr.sbin/pfctl/pfctl_parser.h
317
struct node_host *host(const char *);
usr.sbin/pfctl/pfctl_parser.h
321
struct node_host *, int, int);