Home
last modified time | relevance | path

Searched refs:send_addr (Results 1 – 2 of 2) sorted by relevance

/freebsd/libexec/bootpd/bootpgw/
H A Dbootpgw.c101 struct sockaddr_in send_addr; /* destination */ variable
582 send_addr.sin_family = AF_INET; in handle_request()
583 send_addr.sin_port = htons(bootps_port); in handle_request()
584 send_addr.sin_addr.s_addr = server_ipa; in handle_request()
588 (struct sockaddr *) &send_addr, in handle_request()
589 sizeof(send_addr)) < 0) in handle_request()
633 send_addr.sin_family = AF_INET; in handle_reply()
634 send_addr.sin_addr = bp->bp_yiaddr; in handle_reply()
635 send_addr.sin_port = htons(bootpc_port); in handle_reply()
657 (struct sockaddr *) &send_addr, in handle_reply()
[all …]
/freebsd/libexec/bootpd/
H A Dbootpd.c123 struct sockaddr_in send_addr; /* destination */ variable
1097 send_addr.sin_family = AF_INET; in sendreply()
1098 send_addr.sin_port = htons(port); in sendreply()
1099 send_addr.sin_addr = dst; in sendreply()
1103 (struct sockaddr *) &send_addr, in sendreply()
1104 sizeof(send_addr)) < 0) in sendreply()