Lines Matching defs:bootp_pkt
627 struct bootp_pkt { /* BOOTP packet format */ struct
628 struct iphdr iph; /* IP header */
629 struct udphdr udph; /* UDP header */
630 u8 op; /* 1=request, 2=reply */
631 u8 htype; /* HW address type */
632 u8 hlen; /* HW address length */
633 u8 hops; /* Used only by gateways */
634 __be32 xid; /* Transaction ID */
635 __be16 secs; /* Seconds since we started */
636 __be16 flags; /* Just what it says */
637 __be32 client_ip; /* Client's IP address if known */
638 __be32 your_ip; /* Assigned IP address */
639 __be32 server_ip; /* (Next, e.g. NFS) Server's IP address */
640 __be32 relay_ip; /* IP address of BOOTP relay */
641 u8 hw_addr[16]; /* Client's HW address */
642 u8 serv_name[64]; /* Server host name */
643 u8 boot_file[128]; /* Name of boot file */
644 u8 exten[312]; /* DHCP options / BOOTP vendor extensions */