Home | History | Annotate | Download | only in common

Lines Matching defs:call

140 	struct bootp_packet call;
507 /* This call used for the side effect (badopt flag) */
733 aio.iov_base = (void *) &ifctx->call;
734 aio.iov_len = sizeof(ifctx->call);
741 auio.uio_resid = sizeof(ifctx->call);
808 ifctx->call.secs = htons(gctx->secs);
827 if (gctx->reply.xid != ifctx->call.xid)
831 if (gctx->reply.hlen != ifctx->call.hlen)
836 ifctx->call.chaddr,
837 ifctx->call.hlen) != 0)
1268 bzero((void *) &ifctx->call, sizeof(ifctx->call));
1271 ifctx->call.op = BOOTP_REQUEST; /* BOOTREQUEST */
1272 ifctx->call.htype = 1; /* 10mb ethernet */
1273 ifctx->call.hlen = ifctx->sdl->sdl_alen;/* Hardware address length */
1274 ifctx->call.hops = 0;
1277 ifctx->call.xid = txdr_unsigned(ifctx->xid);
1278 bcopy(LLADDR(ifctx->sdl), &ifctx->call.chaddr, ifctx->sdl->sdl_alen);
1280 vendp = ifctx->call.vend;
1332 ifctx->call.secs = 0;
1333 ifctx->call.flags = htons(0x8000); /* We need a broadcast answer */
1446 /* This call used for the side effect (overload flag) */
1738 printf("BOOTP call failed\n");
1910 #if 0 /* Need to call bootpc_init from module initialization routine */