Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

dhcp.h 186B

123456789101112
  1. #ifndef DHCP_H
  2. #define DHCP_H
  3. #include "stdint.h"
  4. struct dhcp_dev_id {
  5. uint8_t bus_type;
  6. uint16_t vendor_id;
  7. uint16_t device_id;
  8. } __attribute__ (( packed ));
  9. #endif /* DHCP_H */