storoj / libimobiledevice-win32

win32 port of libimobiledevice (http://libimobiledevice.org)
64 stars 61 forks source link

Compatibility or support for ios10 #34

Open prateek1108 opened 7 years ago

prateek1108 commented 7 years ago

Hello Sir, i am trying to use libimobiledevice with ios 10 and its showing error "did not get goodbye response back" at this ret = lockdownd_receive(client, &dict); if (!dict) { debug_info("did not get goodbye response back"); return LOCKDOWN_E_PLIST_ERROR; }

prateek1108 commented 7 years ago

Hello Sir,

i tried to connect and send data in ios 10 by libimobiledevice on windows platform . i am anbale to send data to iphone, its shows error at lock_start_service() no service value is there as result of this function and the function fails at service_send() debug_info("sending %d bytes", length); service_send(client->parent, (const char)&nlen, sizeof(nlen), (uint32_t)&bytes); if (bytes == sizeof(nlen)) { service_send(client->parent, content, length, (uint32_t*)&bytes); if (bytes > 0) { debug_info("sent %d bytes", bytes); debug_plist(plist); if ((uint32_t)bytes == length) { res = PROPERTY_LIST_SERVICE_E_SUCCESS; } else { debug_info("ERROR: Could not send all data (%d of %d)!", bytes, length); } } }

first service send work completely and another one fails to write data in iphone.