summaryrefslogtreecommitdiffstats
path: root/src/include/dhcp.h
diff options
context:
space:
mode:
authorMichael Brown2005-04-21 20:18:29 +0200
committerMichael Brown2005-04-21 20:18:29 +0200
commit98ff29345ec0819498f131496db0d96262e3c05f (patch)
tree4b31c4d59e3293d7fc0b35587145a30d1b074f2e /src/include/dhcp.h
parentForce a standard format upon debug messages. (diff)
downloadipxe-98ff29345ec0819498f131496db0d96262e3c05f.tar.gz
ipxe-98ff29345ec0819498f131496db0d96262e3c05f.tar.xz
ipxe-98ff29345ec0819498f131496db0d96262e3c05f.zip
Created a bus/device API that allows for the ROM prefix to specify an
initial device, and will also allow for e.g. a device menu to be presented to the user.
Diffstat (limited to 'src/include/dhcp.h')
-rw-r--r--src/include/dhcp.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/dhcp.h b/src/include/dhcp.h
new file mode 100644
index 00000000..deba219b
--- /dev/null
+++ b/src/include/dhcp.h
@@ -0,0 +1,12 @@
+#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 */