david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/dhcp.h

13 lines
186 B
C

#ifndef DHCP_H
#define DHCP_H
#include "stdint.h"
struct dhcp_dev_id {
uint8_t bus_type;
uint16_t vendor_id;
uint16_t device_id;
} __attribute__ (( packed ));
#endif /* DHCP_H */