Skip to content
Snippets Groups Projects
libmobile_wrapper.h 309 B
Newer Older
  • Learn to ignore specific revisions
  • #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;
    };