summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Better error handling when saving pair recordsFrederik Carlier2017-10-292-12/+34
| | | | plist_write_to_filename and buffer_write_to_filename now return 0 if the actual write operation failed (e.g. because access is denied to the file), and set errno if required.
* utils: Use autoconf to check for availability of clock_gettime()Nikias Bassen2017-07-172-2/+2
|
* Fix --with-systemd argument to configureMoritz Schlarb2016-01-281-1/+1
| | | | | Otherwise, specifying ''--with-systemd'' will actually lead to systemd support being disabled. Got that from https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/External-Software.html (last example).
* Try to autodetect ppoll(2) instead of hardcoding the list of platforms ↵Jan Beich2016-01-282-1/+2
| | | | lacking it thus using fallback.
* device: Plug small memory leakNikias Bassen2016-01-281-0/+1
|
* Fix debug message printing the wrong timeout valueNikias Bassen2016-01-281-1/+1
|
* Add a static clock_gettime() substitute for OS X.Aaron Burghardt2016-01-281-0/+33
|
* internal_get_value: fix over-free of node returned by plist_dict_get_item.Aaron Burghardt2015-07-311-1/+0
|
* send_system_buid: fix leak of buid string returned by config_get_system_buid.Aaron Burghardt2015-07-311-0/+1
|
* Update README with new git URL, IRC and twitter profileMartin Szulecki2015-01-281-2/+5
|
* Update NEWS with latest changesNikias Bassen2014-12-021-0/+1
|
* preflight: Remove obsoleted extern function declarationsNikias Bassen2014-12-021-3/+0
|
* usb: Implement device discovery using libusb hotplug eventsNikias Bassen2014-12-021-202/+268
|
* Rename usb-linux.c to more suitable usb.cNikias Bassen2014-12-022-2/+2
|
* Updated NEWS with latest changesNikias Bassen2014-12-021-0/+10
|
* systemd: Remove Type option from service file as it already defaults to simpleMartin Szulecki2014-11-211-1/+0
|
* systemd: Add documentation reference to unit fileMartin Szulecki2014-11-211-0/+1
|
* docs: Use correct manual section (8) for manpageMartin Szulecki2014-11-212-6/+6
|
* Use non-blocking sockets for client communicationNikias Bassen2014-11-122-1/+31
| | | | | | | This approach is better than using blocking sockets and select() since there's no guarantee that send() doesn't block. Plus we're using poll() anyway so send() and recv() will only be called if the socket is actually ready for writing/reading.
* Revert "client: Make sure fd is writable before calling send() to avoid ↵Nikias Bassen2014-11-121-18/+1
| | | | | | blocking" This reverts commit 23ecea077d8f22d9da5cae50df3e2ff3406fee90.
* client: Make sure fd is writable before calling send() to avoid blockingNikias Bassen2014-11-111-1/+18
|
* Get USB speed for device and use it for device attached client messageMartin Szulecki2014-11-115-2/+34
|
* Bump libusb dependency to 1.0.9 for libusb_get_device_speed()Martin Szulecki2014-11-111-1/+1
|
* client: Remove invalid line feed from log messageNikias Bassen2014-11-111-1/+1
|
* client: Log pid of connecting clients (if supported)Nikias Bassen2014-11-111-0/+16
|
* Use new get_tick_count() to avoid timing issues on packetsMartin Szulecki2014-11-114-9/+24
|
* Post-release version bump to 1.1.1Martin Szulecki2014-10-171-1/+1
|
* configure.ac: Fix small typo in error message1.1.0Martin Szulecki2014-10-171-1/+1
|
* Update NEWS with latest changesMartin Szulecki2014-10-171-0/+12
|
* Make sure usbmuxd-proto.h file is added to distributionMartin Szulecki2014-10-171-1/+1
|
* Fix udev activation rule using wrong binary due to typoMartin Szulecki2014-10-161-1/+1
|
* Set bug report and home page URLs in AC_INIT()Martin Szulecki2014-10-161-1/+1
|
* Bump autoconf requirement to 2.64Martin Szulecki2014-10-161-1/+1
|
* Add a pkg-config requirement check in autogen.shMartin Szulecki2014-10-161-0/+4
|
* Only conditionally compile bits of udev and systemd supportMartin Szulecki2014-10-161-1/+21
|
* Make sure configuration summary outputs correctly on OS XMartin Szulecki2014-10-161-7/+4
|
* The activation method on OS X is "manual" as we do not offer launchd supportMartin Szulecki2014-10-161-1/+2
|
* Set udevrulesdir only for platforms with udevMartin Szulecki2014-10-161-1/+2
|
* Use HAVE_SYSTEMD macro definition instead of WANT_SYSTEMDMartin Szulecki2014-10-161-1/+1
|
* Rename HAVE_SYSTEMD conditional into WANT_SYSTEMDMartin Szulecki2014-10-162-2/+2
|
* Post-release version bump to 1.1.0Martin Szulecki2014-10-151-1/+1
|
* Make sure license files are added in make dist1.0.9Martin Szulecki2014-10-151-1/+1
|
* Update NEWS with latest changesMartin Szulecki2014-10-141-5/+5
|
* docs: Update man page to match latest usage changesMartin Szulecki2014-10-141-7/+20
|
* Use long options for udev activation rule as it's easier to understandMartin Szulecki2014-10-141-1/+1
|
* systemd: Use new "--systemd" and fix multiple device handling with systemdMartin Szulecki2014-10-141-1/+1
|
* Fix support for more than one device with systemd by extending usbmuxd usageMartin Szulecki2014-10-141-15/+41
| | | | | | | | Upon connecting a new device, usbmuxd was not notified to scan for it if systemd was used as the activation method. This change introduces the "--disable-hotplug" and "--enable-exit" options to have a finer control over usbmuxd's signaling behavior. The convenience option "--systemd" complements the "--udev" option and setups the right settings for systemd.
* Fix broken "--user" option which didn't accept an argumentMartin Szulecki2014-10-141-1/+1
|
* Slightly clean up CFLAGS in Makefile.amMartin Szulecki2014-10-141-4/+5
|
* Update README description to match man pageMartin Szulecki2014-10-141-6/+6
|