Home
last modified time | relevance | path

Searched defs:bootp (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/sys/lib/libsa/
H A Dbootp.h31 struct bootp { struct
32 u_char bp_op; /* packet opcode type */
33 u_char bp_htype; /* hardware addr type */
34 u_char bp_hlen; /* hardware addr length */
35 u_char bp_hops; /* gateway hops */
36 u_int bp_xid; /* transaction ID */
37 u_short bp_secs; /* seconds since boot began */
38 u_short bp_flags; /* RFC1532 broadcast, etc. */
39 struct in_addr bp_ciaddr; /* client IP address */
40 struct in_addr bp_yiaddr; /* 'your' IP address */
[all …]
H A Dbootp.c67 bootp(int sock) in bootp() function
/openbsd-src/usr.sbin/tcpdump/
H A Dbootp.h25 struct bootp { struct
26 unsigned char bp_op; /* packet opcode type */
27 unsigned char bp_htype; /* hardware addr type */
28 unsigned char bp_hlen; /* hardware addr length */
29 unsigned char bp_hops; /* gateway hops */
30 u_int32_t bp_xid; /* transaction ID */
31 unsigned short bp_secs; /* seconds since boot began */
32 unsigned short bp_flags; /* flags: 0x8000 is broadcast */
33 struct in_addr bp_ciaddr; /* client IP address */
34 struct in_addr bp_yiaddr; /* 'your' IP address */
[all …]
/openbsd-src/usr.sbin/dhcpd/
H A Dbootp.c63 bootp(struct packet *packet) in bootp() function