mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-15 07:41:45 +00:00
98ff29345e
initial device, and will also allow for e.g. a device menu to be presented to the user.
13 lines
186 B
C
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 */
|