Symbol: iaddr
libexec/bootpd/bootpd.c
701
(bp->bp_yiaddr).s_addr = hp->iaddr.s_addr;
libexec/bootpd/bootpd.c
712
dummyhost.iaddr.s_addr = bp->bp_ciaddr.s_addr;
libexec/bootpd/bootpd.c
726
report(LOG_INFO, "found %s (%s)", inet_ntoa(hp->iaddr),
libexec/bootpd/bootpd.h
109
iaddr :1,
libexec/bootpd/bootpd.h
191
iaddr,
libexec/bootpd/dumptab.c
199
if (hp->flags.iaddr) {
libexec/bootpd/dumptab.c
200
fprintf(fp, "\\\n\t:ip=%s:", inet_ntoa(hp->iaddr));
libexec/bootpd/readfile.c
1371
if (((host1->iaddr.s_addr) & (host1->subnet_mask.s_addr)) !=
libexec/bootpd/readfile.c
1372
((host2->iaddr.s_addr) & (host2->subnet_mask.s_addr)))
libexec/bootpd/readfile.c
2032
return (host1->iaddr.s_addr == host2->iaddr.s_addr);
libexec/bootpd/readfile.c
408
if (hp->flags.iaddr == 0) {
libexec/bootpd/readfile.c
413
hp->iaddr.s_addr = value;
libexec/bootpd/readfile.c
414
hp->flags.iaddr = TRUE;
libexec/bootpd/readfile.c
419
if (lookup_netmask(hp->iaddr.s_addr, &value)) {
libexec/bootpd/readfile.c
427
if (hp->flags.iaddr) {
libexec/bootpd/readfile.c
444
if (hp->flags.iaddr) {
libexec/bootpd/readfile.c
445
hashcode = hash_HashFunction((u_char *) & (hp->iaddr.s_addr), 4);
libexec/bootpd/readfile.c
939
PARSE_IA1(iaddr);
sbin/dhclient/clparse.c
573
struct iaddr ip_addr;
sbin/dhclient/clparse.c
724
struct iaddr addr;
sbin/dhclient/dhclient.c
155
struct iaddr defaddr = { .len = 4 }; /* NULL is for silence warnings */
sbin/dhclient/dhclient.c
1579
struct iaddr netmask, subnet, broadcast;
sbin/dhclient/dhclient.c
168
struct iaddr a;
sbin/dhclient/dhclient.c
661
dhcpack(struct iaddr client_addr, struct option_data *options)
sbin/dhclient/dhclient.c
790
dhcpoffer(struct iaddr client_addr, struct option_data *options)
sbin/dhclient/dhclient.c
83
struct iaddr iaddr_broadcast = { 4, { 255, 255, 255, 255 } };
sbin/dhclient/dhclient.c
949
dhcpnak(struct iaddr client_addr, struct option_data *options)
sbin/dhclient/dhcpd.h
109
struct iaddr address;
sbin/dhclient/dhcpd.h
161
struct iaddr destination;
sbin/dhclient/dhcpd.h
168
struct iaddr requested_address;
sbin/dhclient/dhcpd.h
210
void do_packet(int, unsigned int, struct iaddr, struct hardware *);
sbin/dhclient/dhcpd.h
233
int parse_ip_addr(FILE *, struct iaddr *);
sbin/dhclient/dhcpd.h
272
struct iaddr subnet_number(struct iaddr, struct iaddr);
sbin/dhclient/dhcpd.h
273
struct iaddr broadcast_addr(struct iaddr, struct iaddr);
sbin/dhclient/dhcpd.h
274
int addr_eq(struct iaddr, struct iaddr);
sbin/dhclient/dhcpd.h
275
char *piaddr(struct iaddr);
sbin/dhclient/dhcpd.h
283
void dhcpoffer(struct iaddr, struct option_data *);
sbin/dhclient/dhcpd.h
284
void dhcpack(struct iaddr, struct option_data *);
sbin/dhclient/dhcpd.h
285
void dhcpnak(struct iaddr, struct option_data *);
sbin/dhclient/dhcpd.h
97
struct iaddr addr;
sbin/dhclient/dispatch.c
190
struct iaddr ifrom;
sbin/dhclient/inet.c
101
piaddr(struct iaddr addr)
sbin/dhclient/inet.c
51
struct iaddr
sbin/dhclient/inet.c
52
subnet_number(struct iaddr addr, struct iaddr mask)
sbin/dhclient/inet.c
54
struct iaddr rv;
sbin/dhclient/inet.c
74
struct iaddr
sbin/dhclient/inet.c
75
broadcast_addr(struct iaddr subnet, struct iaddr mask)
sbin/dhclient/inet.c
77
struct iaddr rv;
sbin/dhclient/inet.c
93
addr_eq(struct iaddr addr1, struct iaddr addr2)
sbin/dhclient/options.c
451
do_packet(int len, unsigned int from_port, struct iaddr from,
sbin/dhclient/options.c
457
void (*handler)(struct iaddr, struct option_data *);
sbin/dhclient/parse.c
136
parse_ip_addr(FILE *cfile, struct iaddr *addr)