You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
The text was updated successfully, but these errors were encountered:
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.
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;
}
The text was updated successfully, but these errors were encountered: