summaryrefslogtreecommitdiffstats
path: root/src/include/dhcp.h
diff options
context:
space:
mode:
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 */