summaryrefslogtreecommitdiffstats
path: root/src/iphone.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/iphone.c')
-rw-r--r--src/iphone.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/iphone.c b/src/iphone.c
index 77b67c3..6833e4c 100644
--- a/src/iphone.c
+++ b/src/iphone.c
@@ -148,6 +148,8 @@ int send_to_phone(iPhone *phone, char *data, int datalen) {
148 bytes = usb_bulk_write(phone->device, BULKOUT, data, datalen, 800); 148 bytes = usb_bulk_write(phone->device, BULKOUT, data, datalen, 800);
149 if (debug) printf("noooo...?\n"); 149 if (debug) printf("noooo...?\n");
150 if (bytes < datalen) { 150 if (bytes < datalen) {
151 if(debug && bytes < 0)
152 printf("send_to_iphone(): libusb gave me the error: %s\n", usb_strerror());
151 return -1; 153 return -1;
152 } else { 154 } else {
153 return bytes; 155 return bytes;
@@ -169,6 +171,11 @@ int recv_from_phone(iPhone *phone, char *data, int datalen) {
169 if (!phone) return -1; 171 if (!phone) return -1;
170 int bytes = 0; 172 int bytes = 0;
171 bytes = usb_bulk_read(phone->device, BULKIN, data, datalen, 3500); 173 bytes = usb_bulk_read(phone->device, BULKIN, data, datalen, 3500);
174 if(bytes < 0)
175 {
176 if(debug) printf("recv_from_iphone(): libusb gave me the error: %s\n", usb_strerror());
177 return -1;
178 }
172 return bytes; 179 return bytes;
173} 180}
174 181