Lines Matching defs:replybuf
296 struct bootp *replybuf;
394 m_copydata(m, 0, bpc->replylen, (void *)bpc->replybuf);
395 bootp = bpc->replybuf;
507 bpc.replybuf = NULL;
629 bpc.replybuf = malloc(BOOTP_SIZE_MAX, M_DEVBUF, M_WAITOK);
630 if (bpc.replybuf == NULL)
649 memcpy(&bootp->bp_vend[index], &bpc.replybuf->bp_yiaddr, 4);
673 * the buffer at bpc.replybuf.
681 inet_ntoa(bpc.replybuf->bp_siaddr));
683 bootp_extract(bpc.replybuf, bpc.replylen, nd, flags);
686 if (bpc.replybuf)
687 free(bpc.replybuf, M_DEVBUF);