Home
last modified time | relevance | path

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

/dflybsd-src/libexec/bootpd/
H A Dbootp.h45 struct bootp { struct
46 unsigned char bp_op; /* packet opcode type */
47 unsigned char bp_htype; /* hardware addr type */
48 unsigned char bp_hlen; /* hardware addr length */
49 unsigned char bp_hops; /* gateway hops */
50 u_int32 bp_xid; /* transaction ID */
51 unsigned short bp_secs; /* seconds since boot began */
52 unsigned short bp_flags; /* RFC1532 broadcast, etc. */
53 struct in_addr bp_ciaddr; /* client IP address */
54 struct in_addr bp_yiaddr; /* 'your' IP address */
[all …]
/dflybsd-src/stand/lib/
H A Dbootp.h28 struct bootp { struct
29 unsigned char bp_op; /* packet opcode type */
30 unsigned char bp_htype; /* hardware addr type */
31 unsigned char bp_hlen; /* hardware addr length */
32 unsigned char bp_hops; /* gateway hops */
33 unsigned int bp_xid; /* transaction ID */
34 unsigned short bp_secs; /* seconds since boot began */
35 unsigned short bp_flags;
36 struct in_addr bp_ciaddr; /* client IP address */
37 struct in_addr bp_yiaddr; /* 'your' IP address */
[all …]
H A Dbootp.c81 bootp(int sock, int flag) in bootp() function
/dflybsd-src/contrib/dhcpcd/src/
H A Ddhcp.h152 struct bootp { struct
171 #define DHCP_MIN_LEN (offsetof(struct bootp, vend) + 4) argument
177 struct bootp bootp; member
H A Ddhcp.c167 const struct bootp *bootp, size_t bootp_len, in get_option()
283 struct in_addr *a, const struct bootp *bootp, size_t bootp_len, in get_option_addr()
298 uint32_t *i, const struct bootp *bootp, size_t bootp_len, uint8_t option) in get_option_uint32()
315 uint16_t *i, const struct bootp *bootp, size_t bootp_len, uint8_t option) in get_option_uint16()
332 uint8_t *i, const struct bootp *bootp, size_t bootp_len, uint8_t option) in get_option_uint8()
509 const struct bootp *bootp, size_t bootp_len, uint8_t option) in get_option_string()
561 const struct bootp *bootp, size_t bootp_len) in get_option_routes()
696 dhcp_message_add_addr(struct bootp *bootp, in dhcp_message_add_addr()
725 struct bootp *bootp; in make_message() local
1131 read_lease(struct interface *ifp, struct bootp **bootp) in read_lease()
[all …]
/dflybsd-src/contrib/tcpdump/
H A Dprint-bootp.c57 struct bootp { struct
64 nd_uint16_t bp_flags; /* flags - see bootp_flag_values[] argument
65 in print-bootp.c */ argument
66 nd_ipv4 bp_ciaddr; /* client IP address */
67 nd_ipv4 bp_yiaddr; /* 'your' IP address */
68 nd_ipv4 bp_siaddr; /* server IP address */
69 nd_ipv4 bp_giaddr; /* gateway IP address */
70 nd_byte bp_chaddr[16]; /* client hardware address */
71 nd_byte bp_sname[64]; /* server host name */
72 nd_byte bp_file[128]; /* boot file name */
[all …]