You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- #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 */
|