Searched defs:bootp (Results 1 – 4 of 4) sorted by relevance
31 struct bootp { struct32 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 …]
67 bootp(int sock) in bootp() function
25 struct bootp { struct26 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 …]
63 bootp(struct packet *packet) in bootp() function