Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-01-30 | Add missing include | Nikias Bassen | 1 | -0/+1 | |
2024-01-30 | Move LIMD_GLUE_API definitions to public headers | Nikias Bassen | 20 | -144/+190 | |
2023-12-26 | socket: Conditionally compile using poll or select based on availability | Nikias Bassen | 2 | -28/+86 | |
2023-12-26 | socket: Fix select failing when the process has many file descriptors by ↵ | messi | 1 | -79/+100 | |
using poll instead This happens, for example, when a process links with libusbmuxd, and the process is file descriptor heavy. Note: 'poll' means the syscall poll, not a polling approach. This patch does not add a busy wait and is not a performance regression. | |||||
2023-12-16 | win32: Fix external compilation using libimobiledevice-glue/thread.h | Nikias Bassen | 1 | -2/+15 | |
When using mutex_t data type externally, compilation might fail if CRITICAL_SECTION is not defined, so we just define our own copy. | |||||
2023-12-11 | opack: Fix parsing of 32 and 64 bit packed values | Nikias Bassen | 1 | -2/+2 | |
32 and 64 bit packed values were not parsed correctly due to bad pointer manipulation. Thanks to @cornejo for spotting this! | |||||
2023-12-11 | win32: Remove windows.h from public headers | Nikias Bassen | 3 | -12/+12 | |
2023-11-10 | opack: Fixed 32bit buffer overflow | Nikias Bassen | 1 | -1/+1 | |
Thanks to @cornejo for spotting this! | |||||
2023-05-13 | [github actions] Updated actions to newer versions | Nikias Bassen | 1 | -6/+6 | |
2023-04-28 | Make sure git-version-gen and .tarball-version are included in dist tarball | Nikias Bassen | 1 | -1/+5 | |
2023-04-28 | git-version-gen: Prevent multiple lines of output | Nikias Bassen | 1 | -0/+1 | |
2023-04-21 | Add missing include1.0.0 | Nikias Bassen | 1 | -0/+1 | |
2023-04-21 | Update README.md | Tobias H. Petersen | 1 | -1/+1 | |
Trailing `\` removed | |||||
2023-04-21 | Add NEWS for release | Nikias Bassen | 1 | -0/+4 | |
2023-04-21 | autoconf: Automatically derive version number from latest git tag | Nikias Bassen | 2 | -2/+26 | |
2023-04-21 | Set minimum required libplist version to 2.3.0 | Nikias Bassen | 1 | -1/+1 | |
2023-04-19 | Remove plist-related code in favor of new libplist API | Nikias Bassen | 2 | -251/+1 | |
2023-01-09 | Fix compilation on cygwin | Josef Micka | 1 | -0/+6 | |
2022-08-24 | [github-actions] Add a scheduled build every 1st of the month so we always ↵ | Nikias Bassen | 1 | -1/+4 | |
have an artifact | |||||
2022-05-23 | termcolors: Rename COLOR_* macros to FG_* due to conflict with ncurses | Nikias Bassen | 1 | -24/+24 | |
Also, FG_* is even better since we already have BG_* ones. | |||||
2022-04-22 | [clang-tidy] Do not use else after return/break/continue | Rosen Penev | 1 | -2/+1 | |
Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2022-04-22 | [clang-tidy] utils: Fix too small loop variable | Rosen Penev | 1 | -1/+1 | |
Found with bugprone-too-small-loop-variable Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2022-04-22 | [clang-tidy] use uppercase numeric literals | Rosen Penev | 1 | -4/+4 | |
Found with readability-uppercase-literal-suffix Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2022-04-13 | termcolors: Add missing stdio.h include | Nikias Bassen | 1 | -0/+1 | |
Thanks to @Schlaubischlump for pointing this out. | |||||
2022-04-04 | Updated README with pkg-config requirement | Nikias Bassen | 1 | -1/+2 | |
Thanks @ichbluu for pointing this out. | |||||
2022-04-04 | utils: Close file if buffer allocation fails in buffer_read_from_filename() | Nikias Bassen | 1 | -0/+1 | |
Thanks @demhademha for pointing this out. | |||||
2022-04-01 | Fix undefined bswap32 and bswap64 for MIPS machine | Potin Lai | 1 | -2/+2 | |
Replace bswap32 and bswap64 with internal defined version (__bswap_X) Signed-off-by: Potin Lai <potin.lai@quantatw.com> | |||||
2022-03-29 | socket: Add socket_get_socket_port function | Nikias Bassen | 2 | -3/+24 | |
2022-03-29 | [github-actions] Use windows-2019 instead of windows-latest for now | Nikias Bassen | 1 | -1/+1 | |
2022-02-09 | utils: Use libplist's plist_from_memory instead of duplicating format detection | Nikias Bassen | 1 | -5/+1 | |
2022-02-04 | Add support for Apple's OPACK encoding and TLV format | Nikias Bassen | 8 | -1/+886 | |
2022-02-04 | Add a simple char buffer implementation | Nikias Bassen | 4 | -1/+105 | |
2021-11-25 | Ignore IDE files and macOS finder info | Rick Mark | 1 | -0/+3 | |
2021-11-24 | socket: Add FreeBSD supprt to get_primary_mac_address | Cameron Katri | 1 | -2/+6 | |
2021-10-19 | utils: Fix bad malloc result check in buffer_read_from_filename and test ↵ | Nikias Bassen | 1 | -1/+5 | |
arguments for NULL | |||||
2021-09-25 | Updated README | Nikias Bassen | 1 | -1/+4 | |
2021-09-13 | [github-actions] macOS: build for arm64 too | Nikias Bassen | 1 | -1/+11 | |
2021-09-13 | Check availability of constructor attribute and use it on Windows in favor ↵ | Nikias Bassen | 2 | -10/+36 | |
of DllMain | |||||
2021-08-31 | configure: Make sure to check properly for pthread_once and pthread_cancel | Nikias Bassen | 1 | -1/+8 | |
2021-08-31 | utils: Add missing plist_print_to_stream_with_indentation declaration to ↵ | Nikias Bassen | 1 | -0/+1 | |
public header | |||||
2021-08-30 | thread: Make sure cond_* API is publicly exported | Nikias Bassen | 1 | -5/+5 | |
2021-08-30 | utils: Make MAC_EPOCH define public | Nikias Bassen | 2 | -2/+2 | |
2021-08-27 | Update deprecated autoconf macros and update m4 files | Nikias Bassen | 3 | -113/+150 | |
2021-06-30 | README: Fix typo | Nikias Bassen | 1 | -1/+1 | |
2021-06-21 | utils: Make sure to add MAC_EPOCH when printing PLIST_DATE nodes | Nikias Bassen | 1 | -1/+3 | |
2021-06-21 | utils: Add plist_print_to_stream_with_indentation() | Nikias Bassen | 1 | -3/+7 | |
2021-06-11 | Add build status badge to README.md | Nikias Bassen | 1 | -0/+2 | |
2021-06-11 | [github-actions] Add build workflow | Nikias Bassen | 1 | -0/+151 | |
2021-06-11 | termcolors: Cast to correct type for format string specifier | Nikias Bassen | 1 | -2/+2 | |
2021-06-11 | utils: Suppress compiler warning | Nikias Bassen | 1 | -0/+3 | |