| /freebsd-14.2/libexec/bootpd/ |
| H A D | Makefile.UNIX | 155 OBJ_TEST= bootptest.o print-bootp.o getif.o getether.o \ 187 bootpd.o : bootp.h bptypes.h hash.h hwaddr.h bootpd.h dovend.h 189 bootpef.o : bootp.h bptypes.h hash.h hwaddr.h bootpd.h dovend.h 191 bootpgw.o : bootp.h bptypes.h getif.h hwaddr.h report.h patchlevel.h 192 bootptest.o : bootp.h bptypes.h bootptest.h getif.h patchlevel.h 193 dovend.o : bootp.h bptypes.h bootpd.h hash.h hwaddr.h report.h dovend.h 194 dumptab.o : bootp.h bptypes.h hash.h hwaddr.h report.h patchlevel.h bootpd.h 198 lookup.o : bootp.h bptypes.h lookup.h report.h 199 print-bootp.o : bootp.h bptypes.h bootptest.h 200 readfile.o : bootp.h bptypes.h hash.h hwaddr.h lookup.h readfile.h
|
| H A D | Changes | 6 --> bootp-2.4.3 18 --> bootp-2.4.2 48 --> bootp-2.4.1 53 --> bootp-2.4.0 67 --> bootp-2.3.8 77 --> bootp-2.3.7 126 --> bootp-2.3.6 156 --> bootp-2.3.5 268 --> bootp-2.1 released 275 --> bootp-2.0 released [all …]
|
| H A D | bootpd.c | 103 PRIVATE void dovend_cmu(struct bootp *, struct host *); 105 PRIVATE void dovend_rfc1048(struct bootp *, struct host *, int32); 174 struct bootp *bp; in main() 202 assert(sizeof(struct bootp) == BP_MINPKTSZ); in main() 210 bp = (struct bootp *) pktbuf; in main() 545 if (n < sizeof(struct bootp)) { in main() 620 struct bootp *bp = (struct bootp *) pktbuf; in handle_request() 1013 struct bootp *bp = (struct bootp *) pktbuf; in sendreply() 1155 dovend_cmu(struct bootp *bp, struct host *hp) in dovend_cmu() 1223 dovend_rfc1048(struct bootp *bp, struct host *hp, int32 bootsize) in dovend_rfc1048()
|
| H A D | README | 8 <bootp@andrew.cmu.edu> 11 bootp[email protected] 37 bootps 67/udp bootp # BOOTP Server 71 If your bootp clients don't get a response then several things might be 76 try making your bootp clients send additional requests before giving up. 98 bootp.h The protocol header file 125 print-bootp.c Prints BOOTP packets (taken from BSD tcpdump)
|
| H A D | Problems | 7 the equivalent for a bootp line (or in startup files). 46 My bootp clients are given responses with a boot file name that is 54 acceptable responses from the bootp server. 58 The bootp server (on SunOS) will send a fragmented reply
|
| H A D | Installation | 19 bootps 67/udp bootp # BOOTP Server 23 bootp dgram udp wait root /usr/etc/bootpd bootpd -i
|
| H A D | Announce | 16 Combined bootptest into the bootp release. 60 <bootp@andrew.cmu.edu>
|
| H A D | bootp.h | 42 struct bootp { struct
|
| H A D | bootptab.mcs | 1 # /etc/bootptab: database for bootp server (/etc/bootpd)
|
| H A D | bootptab.cmu | 1 # /etc/bootptab: database for bootp server (/etc/bootpd)
|
| /freebsd-14.2/libexec/bootpd/bootpgw/ |
| H A D | bootpgw.c | 148 struct bootp *bp; in main() 171 assert(sizeof(struct bootp) == BP_MINPKTSZ); in main() 179 bp = (struct bootp *) pktbuf; in main() 460 if (n < sizeof(struct bootp)) { in main() 513 struct bootp *bp = (struct bootp *) pktbuf; in handle_request() 604 struct bootp *bp = (struct bootp *) pktbuf; in handle_reply()
|
| /freebsd-14.2/libexec/bootpd/tools/bootptest/ |
| H A D | bootptest.c | 131 struct bootp *bp; in main() 160 assert(sizeof(struct bootp) == BP_MINPKTSZ); in main() 300 bp = (struct bootp *) sndbuf; in main() 414 if (n < sizeof(struct bootp)) { in main() 425 bootp_print((struct bootp *)rcvbuf, n, sin_from.sin_port, 0); in main() 442 bootp_print((struct bootp *)sndbuf, snaplen, sin_from.sin_port, 0); in send_request()
|
| H A D | bootptest.h | 14 void bootp_print(struct bootp *bp, int length, u_short sport,
|
| H A D | Makefile | 5 SRCS= bootptest.c getether.c getif.c print-bootp.c report.c
|
| H A D | print-bootp.c | 54 bootp_print(struct bootp *bp, int length, u_short sport, u_short dport) in bootp_print() 65 if (length != sizeof(struct bootp)) in bootp_print()
|
| /freebsd-14.2/stand/libsa/ |
| H A D | bootp.c | 88 struct bootp *bootp_response; 122 bootp(int sock) in bootp() function 126 struct bootp *bp; in bootp() 129 struct bootp wbootp; in bootp() 131 struct bootp *rbootp; in bootp() 265 struct bootp *bp; in bootpsend() 288 struct bootp *bp; in bootprecv() 298 if (n == -1 || n < sizeof(struct bootp) - BOOTP_VENDSIZE) in bootprecv() 322 int vsize = n - offsetof(struct bootp, bp_vend); in bootprecv()
|
| H A D | bootp.h | 26 struct bootp { struct 144 extern struct bootp *bootp_response;
|
| H A D | net.h | 120 void bootp(int);
|
| H A D | Makefile | 133 SRCS+= bootp.c rarp.c bootparam.c
|
| /freebsd-14.2/sbin/dhclient/tests/ |
| H A D | fake.c | 70 bootp(struct packet *packet) in bootp() function
|
| /freebsd-14.2/contrib/tcpdump/ |
| H A D | print-bootp.c | 55 struct bootp { struct 285 const struct bootp *bp; in bootp_print() 291 bp = (const struct bootp *)cp; in bootp_print()
|
| /freebsd-14.2/stand/common/ |
| H A D | dev_net.c | 270 bootp(sock); in net_getparams()
|
| /freebsd-14.2/usr.sbin/tcpdump/tcpdump/ |
| H A D | Makefile | 44 print-bootp.c \
|
| /freebsd-14.2/sbin/dhclient/ |
| H A D | dhcpd.h | 419 void bootp(struct packet *);
|
| /freebsd-14.2/share/doc/smm/01.setup/ |
| H A D | spell.ok | 215 bootp
|