Home
last modified time | relevance | path

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

/freebsd-14-stable/libexec/bootpd/bootpgw/
HDbootpgw.c102 struct sockaddr_in send_addr; /* destination */ variable
583 send_addr.sin_family = AF_INET; in handle_request()
584 send_addr.sin_port = htons(bootps_port); in handle_request()
585 send_addr.sin_addr.s_addr = server_ipa; in handle_request()
589 (struct sockaddr *) &send_addr, in handle_request()
590 sizeof(send_addr)) < 0) in handle_request()
634 send_addr.sin_family = AF_INET; in handle_reply()
635 send_addr.sin_addr = bp->bp_yiaddr; in handle_reply()
636 send_addr.sin_port = htons(bootpc_port); in handle_reply()
658 (struct sockaddr *) &send_addr, in handle_reply()
[all …]
/freebsd-14-stable/libexec/bootpd/
HDbootpd.c124 struct sockaddr_in send_addr; /* destination */ variable
1098 send_addr.sin_family = AF_INET; in sendreply()
1099 send_addr.sin_port = htons(port); in sendreply()
1100 send_addr.sin_addr = dst; in sendreply()
1104 (struct sockaddr *) &send_addr, in sendreply()
1105 sizeof(send_addr)) < 0) in sendreply()