Newer
Older
#include <libubox/list.h>
/* ORIGINALLY FROM DONGLE.H - WHERE DOES IT BELONG? */
struct USB {
char *product;
char *product_id;
char *vendor_id;
char *if_name;
};
struct device {
struct list_head list;
struct ubus_object *ubus_obj;
struct USB usb;
char *ip;
int missing; //counter
bool present;
};