diff options
author | Hector Martin | 2009-04-28 19:01:12 +0200 |
---|---|---|
committer | Hector Martin | 2009-04-28 19:01:12 +0200 |
commit | 53fb582e7729d5b7ed40ff04d912fcf5add7ce1c (patch) | |
tree | 8dd1f4d5426421a3a84a9d5df43f2fba48d12143 /usb.h | |
parent | c2d46d901822c54a0677318522db62f30b8d5f04 (diff) | |
download | usbmuxd-53fb582e7729d5b7ed40ff04d912fcf5add7ce1c.tar.gz usbmuxd-53fb582e7729d5b7ed40ff04d912fcf5add7ce1c.tar.bz2 |
USB TX/RX, device framework, version packets
Diffstat (limited to 'usb.h')
-rw-r--r-- | usb.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define BULK_IN 0x85 #define BULK_OUT 0x04 +#define USB_MTU 65536 + #define VID_APPLE 0x5ac #define PID_IPHONE2G 0x1290 #define PID_ITOUCH1G 0x1291 @@ -42,6 +44,7 @@ const char *usb_get_serial(struct usb_device *dev); int usb_get_location(struct usb_device *dev); void usb_get_fds(struct fdlist *list); int usb_get_timeout(void); +int usb_send(struct usb_device *dev, const unsigned char *buf, int length); int usb_process(void); #endif |