Lines Matching refs:hp

620 	struct host *hp = NULL;  in handle_request()  local
678 hp = (struct host *) hash_Lookup(hwhashtable, hashcode, hwlookcmp, in handle_request()
680 if (hp == NULL && in handle_request()
691 hp = (struct host *) hash_Lookup(hwhashtable, hashcode, in handle_request()
694 if (hp == NULL) { in handle_request()
704 (bp->bp_yiaddr).s_addr = hp->iaddr.s_addr; in handle_request()
717 hp = (struct host *) hash_Lookup(iphashtable, hashcode, iplookcmp, in handle_request()
719 if (hp == NULL) { in handle_request()
729 report(LOG_INFO, "found %s (%s)", inet_ntoa(hp->iaddr), in handle_request()
730 hp->hostname->string); in handle_request()
737 if (hp->flags.min_wait) { in handle_request()
739 if (t < hp->min_wait) { in handle_request()
743 t, hp->min_wait); in handle_request()
760 if (hp->flags.exec_file) { in handle_request()
763 strcpy (tst, hp->exec_file->string); in handle_request()
765 strcat (tst, hp->hostname->string); in handle_request()
778 (bp->bp_siaddr).s_addr = (hp->flags.bootserver) ? in handle_request()
779 hp->bootserver.s_addr : 0L; in handle_request()
833 if (hp->flags.tftpdir) { in handle_request()
834 snprintf(realpath, sizeof(realpath), "%s", hp->tftpdir->string); in handle_request()
868 if (hp->flags.homedir) in handle_request()
869 homedir = hp->homedir->string; in handle_request()
870 if (hp->flags.bootfile) in handle_request()
871 bootfile = hp->bootfile->string; in handle_request()
894 strcat(clntpath, hp->hostname->string); in handle_request()
921 if (hp->flags.bootsize_auto) { in handle_request()
954 if (hp->flags.vm_cookie) { in handle_request()
956 bcopy(hp->vm_cookie, bp->bp_vend, 4); in handle_request()
964 dovend_rfc1048(bp, hp, bootsize); in handle_request()
971 dovend_cmu(bp, hp); in handle_request()
983 dest = (hp->flags.reply_addr) ? in handle_request()
984 hp->reply_addr.s_addr : 0L; in handle_request()
1154 dovend_cmu(struct bootp *bp, struct host *hp) in dovend_cmu() argument
1170 if (hp->flags.subnet_mask) { in dovend_cmu()
1171 (vendp->v_smask).s_addr = hp->subnet_mask.s_addr; in dovend_cmu()
1173 if (hp->flags.gateway) { in dovend_cmu()
1174 (vendp->v_dgate).s_addr = hp->gateway->addr->s_addr; in dovend_cmu()
1177 if (hp->flags.domain_server) { in dovend_cmu()
1178 taddr = hp->domain_server; in dovend_cmu()
1186 if (hp->flags.name_server) { in dovend_cmu()
1187 taddr = hp->name_server; in dovend_cmu()
1195 if (hp->flags.time_server) { in dovend_cmu()
1196 taddr = hp->time_server; in dovend_cmu()
1218 hp->hostname->string, MSG); \
1222 dovend_rfc1048(struct bootp *bp, struct host *hp, int32 bootsize) in dovend_rfc1048() argument
1231 if (hp->flags.msg_size) { in dovend_rfc1048()
1232 pktlen = hp->msg_size; in dovend_rfc1048()
1304 if (hp->flags.subnet_mask) { in dovend_rfc1048()
1308 insert_u_long(hp->subnet_mask.s_addr, &vp); /* -4 bytes */ in dovend_rfc1048()
1310 if (hp->flags.gateway) { in dovend_rfc1048()
1312 hp->gateway, in dovend_rfc1048()
1316 if (hp->flags.bootsize) { in dovend_rfc1048()
1318 bootsize = (hp->flags.bootsize_auto) ? in dovend_rfc1048()
1319 ((bootsize + 511) / 512) : (hp->bootsize); /* Round up */ in dovend_rfc1048()
1330 if (hp->flags.exten_file) { in dovend_rfc1048()
1335 len = strlen(hp->exten_file->string); in dovend_rfc1048()
1339 bcopy(hp->exten_file->string, vp, len); in dovend_rfc1048()
1350 len = dovend_rfc1497(hp, vp, bytesleft - 1); in dovend_rfc1048()