Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-04-06 | tools: Fix usage of LDFLAGS and LDADD. | 1 | -20/+20 | ||
Signed-off-by: orbea <orbea@riseup.net> | |||||
2021-03-05 | tools: Fix entering recovery mode on iOS 14.5+ which now requires a pairing | 1 | -8/+20 | ||
2021-02-17 | Remove redundent `select` call from idevicedebugserverproxy.c | 2 | -11/+2 | ||
- Turns out `socket_receive` anyway internally calls `select` again. Use `socket_receive_timeout` instead. - Remove logging for timeout in socket.c as well, it is not really an error condition | |||||
2021-02-03 | tools: Flip order of winsock2.h and windows.h in idevicedebugserverproxy to ↵ | 1 | -1/+1 | ||
get rid of compiler warning | |||||
2021-02-03 | tools: Fix delays in idevicedebugserverproxy when using SSL | 1 | -23/+23 | ||
Turns out using select() wasn't the best idea for the debugserver connection. libimobildevice already does select internally, and doing it here again would cause delays especially when transferring larger amounts of data. | |||||
2021-02-03 | tools: Fix idevicedebugserverproxy compilation on Windows | 1 | -0/+5 | ||
2021-02-01 | tools: Improve idevicedebugserverproxy with select() and less threads | 1 | -135/+61 | ||
2021-02-01 | debugserver: Return success when a receive timed out but actualy bytes have ↵ | 1 | -1/+1 | ||
been read | |||||
2021-02-01 | idevice: Allow partial reads in idevice_connection_receive_timeout() and ↵ | 1 | -6/+9 | ||
handle timeouts more adequate idevice_connection_receive_timeout(), when in SSL mode, was assuming it should always try to read the exact amount of data specified in `len` parameter. While this works with most protocols that have length fields or fixed sized headers/packets, some others (e.g. debugserver) break because it will request a read but doesn't know the size that is expected to be returned beforehand. This commit will handle timeouts better and return the number of bytes that were read in such cases (instead of returning 0 bytes read + error). Note that in the event of a timeout, IDEVICE_E_TIMEOUT will be returned even though actual data might have been read. The number of bytes read will be returned in recv_bytes. | |||||
2021-01-11 | configure: Make sure to also search for cython3 if cython is not found | 1 | -2/+2 | ||
2021-01-03 | Fixed method visibility in mobilebackup2.pxi API | 1 | -13/+18 | ||
2021-01-03 | Fixed bytes/strings checks in lockdown.pxi for compatibility with Python2/3 | 1 | -3/+3 | ||
2021-01-03 | Fixed bytes/strings check in imobiledevice.pyx for compatibility with Python2/3 | 1 | -1/+1 | ||
2021-01-03 | Fixed debugserver.pxi PyString_AsString compatibility with Python3 | 1 | -1/+6 | ||
2021-01-03 | Fixed AFC afc.pxi definitions for Python2/3 compatibility. Added missing ↵ | 1 | -12/+16 | ||
public method 'remove_path_and_contents' | |||||
2020-12-30 | common: Merge socket changes from libusbmuxd | 4 | -49/+388 | ||
2020-12-13 | idevicescreenshot: Remove unnecessary math functions to find a unique filename | 1 | -15/+23 | ||
Removes repeated malloc/free too, limits the maximum filenames to try to 65535 and fails if no unique filename could be found. I think this limit is VERY generous. If there are really so many files to test against it will also cause an unconveniently long delay, but I felt a lower limit could still be easily reached. | |||||
2020-12-10 | ideviceprovision: Fix date output by adding MAC_EPOCH | 1 | -1/+1 | ||
2020-12-10 | cython: Fix typo in mobilesync.pxi | 1 | -1/+1 | ||
Thanks to @corsac-s for spotting this. | |||||
2020-12-10 | docs: Improve --quiet command line switch description in idevicesyslog man page | 1 | -1/+1 | ||
Thanks to @corsac-s for pointing this out. | |||||
2020-12-10 | include: Fix typo in installation_proxy.h | 1 | -6/+6 | ||
Thanks to @timgates42 for spotting this. | |||||
2020-12-10 | README: Fix typo | 1 | -1/+1 | ||
Thanks to @youngchief-btw for spotting this. | |||||
2020-12-10 | idevicescreenshot: Choose a better filename, prevent overwriting existing files | 1 | -18/+57 | ||
2020-12-10 | idevicedebug: Add --detach option to start an app and exit idevicedebug ↵ | 1 | -0/+16 | ||
without killing the app | |||||
2020-12-07 | idevicebackup2: Handle DLMessagePurgeDiskSpace by sending back error code | 1 | -0/+5 | ||
2020-11-19 | idevicebackup2: Update errno to device error mapping | 1 | -1/+14 | ||
2020-11-19 | idevice: Handle -EAGAIN in case usbmuxd_send() returns it | 1 | -1/+4 | ||
2020-09-29 | idevicebackup2: Don't fail on restore when source backup doesn't have any ↵ | 1 | -2/+4 | ||
application info | |||||
2020-09-10 | debugserver: Fix service startup for iOS 14b4+ | 4 | -3/+15 | ||
2020-08-10 | screenshotr: Set DeviceLink version to 400 to support iOS 14b4+ | 1 | -1/+1 | ||
2020-08-07 | mobilebackup2: Set DeviceLink version to 400 to support iOS 14b4+ | 1 | -1/+1 | ||
2020-08-06 | idevice: Fix build with LibreSSL | 1 | -1/+1 | ||
2020-07-30 | docs: Add PROJECT_LOGO for documentation | 2 | -1/+2 | ||
2020-07-30 | docs: Add favicon for generated documentation | 2 | -0/+1 | ||
2020-07-30 | docs: Add missing CSS file for new documentation style | 1 | -0/+1722 | ||
2020-07-30 | docs: Add HTML templates for header/footer and layout config for documentation | 4 | -3/+302 | ||
2020-07-30 | docs: Hide source file section in documentation as it is not very useful | 1 | -1/+1 | ||
2020-07-30 | docs: Unfold INPUT items into multiple lines | 1 | -1/+3 | ||
2020-07-30 | docs: Add custom stylesheet for a modern responsive documentation style | 4 | -2/+6 | ||
2020-07-30 | docs: Use content of README.md as main page of documentation | 1 | -2/+2 | ||
2020-07-30 | docs: Update doxygen config file to version 1.8.16 | 1 | -180/+333 | ||
2020-06-19 | idevicesyslog: Print device UDID with connect/disconnect message | 1 | -2/+2 | ||
2020-06-19 | idevicesyslog: Make sure device event callback respects the presence or ↵ | 1 | -0/+5 | ||
absence of --network option | |||||
2020-06-15 | Post release version bump to 1.3.1 | 1 | -1/+1 | ||
2020-06-15 | Update NEWS with latest changes1.3.0 | 1 | -0/+11 | ||
2020-06-15 | Use patterns instead of listing each tool binary in .gitignore | 1 | -18/+2 | ||
2020-06-14 | Redo cython check logic and check for "no-cast-function" gcc 8+ compiler flag | 2 | -7/+17 | ||
2020-06-14 | Unfold cython automake variables into multiple lines for maintainability | 1 | -3/+25 | ||
2020-06-14 | Rename configure option for debug code to "--enable-debug" to match libplist | 2 | -5/+5 | ||
2020-06-14 | Improve wording of cython related configure warning messages | 2 | -3/+3 | ||