Lines Matching refs:rbp
162 struct bootp_t *rbp; in bootp_reply() local
189 rbp = (struct bootp_t *)m->m_data; in bootp_reply()
191 memset(rbp, 0, sizeof(struct bootp_t)); in bootp_reply()
229 rbp->bp_op = BOOTP_REPLY; in bootp_reply()
230 rbp->bp_xid = bp->bp_xid; in bootp_reply()
231 rbp->bp_htype = 1; in bootp_reply()
232 rbp->bp_hlen = 6; in bootp_reply()
233 memcpy(rbp->bp_hwaddr, bp->bp_hwaddr, 6); in bootp_reply()
235 rbp->bp_yiaddr = htonl(sock_address_get_ip(&daddr)); /* Client IP address */ in bootp_reply()
236 rbp->bp_siaddr = htonl(sock_address_get_ip(&saddr)); /* Server IP address */ in bootp_reply()
238 q = rbp->bp_vend; in bootp_reply()
259 snprintf((char *)rbp->bp_file, sizeof(rbp->bp_file), "%s", in bootp_reply()