Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-04-24 | 1. renamed iphone.c to usbmux.c and iphone.h to usbmux.h | Nikias Bassen | 1 | -22/+20 | |
2. renamed iphone* function to usbmux* 3. got rid of iphone_error_t type and constants 4. indentation adjustments | |||||
2009-04-17 | removed some compiler warnings | Nikias Bassen | 1 | -3/+3 | |
2009-04-17 | Drop privileges after startup | Nikias Bassen | 1 | -2/+23 | |
2009-04-14 | Logging and debugging refined. | Nikias Bassen | 1 | -91/+99 | |
2009-04-13 | This _should_ fix a race condition that happens when a client is about | Nikias Bassen | 1 | -6/+5 | |
to cleanup the stuff that is used by another client that is about to set up a new connection. Increased timeout in sock_stuff from 10 to 20 seconds and decreased the pullbulk recv timeout from 5 to 3 seconds. | |||||
2009-04-13 | [URGENT][BUGFIX] use device_count++ instead of device++. No further comment. | Nikias Bassen | 1 | -1/+1 | |
2009-04-12 | better error handling, some cleanup, and changed confusing | Nikias Bassen | 1 | -73/+55 | |
struct/variable naming. | |||||
2009-04-09 | better(?) error handling | Nikias Bassen | 1 | -6/+16 | |
2009-04-08 | Start bulk reader thread _after_ successfully creating a connection to | Nikias Bassen | 1 | -2/+9 | |
to prevent pthread locking with uninitialized locking variable. Still only started once per device. | |||||
2009-04-08 | added --exit-on-no-devices option. | Nikias Bassen | 1 | -1/+42 | |
2009-04-08 | Implemented lockfile stuff to prevent multiple running instances. | Nikias Bassen | 1 | -25/+188 | |
Implemented daemonizing, use -f to run in foreground. Implemented logging to syslog (or to std{out,err} when running in foreground). Modified the udev rules file (removed --pidfile etc.). | |||||
2009-03-29 | [PATCH] renamed: usbmuxd.h -> usbmuxd-proto.h | Paul Sladen | 1 | -1/+1 | |
renamed: libusbmuxd.h -> usbmuxd.h Use 'install' in Makefile build libusbmuxd.so (use with '#include <usbmux.h>' and -lusbmuxd add *.so to .gitignore Really this time. Signed-off-by: Nikias Bassen <nikias@gmx.li> | |||||
2009-03-28 | debugging output fixed | Nikias Bassen | 1 | -9/+9 | |
'libusbmuxd' added to simplify use of usbmuxd in external tools testclient removed setting of configuration 3 disabled (to be handled by udev) | |||||
2009-03-27 | renamed struct usbmuxd_device_info_request to usbmuxd_device_info_record | Nikias Bassen | 1 | -9/+9 | |
as it is infact an informational record for the client program and not a request. | |||||
2009-03-27 | Make all fprintf(stderr) be >= verbose level | Paul Sladen | 1 | -80/+89 | |
Signed-off-by: Nikias Bassen <nikias@gmx.li> | |||||
2009-03-23 | changed timeout in handleConnectRequest | Nikias Bassen | 1 | -12/+12 | |
renamed hello request to scan request | |||||
2009-03-19 | forgot setting device_use_count variable in cleanup code | Nikias Bassen | 1 | -0/+2 | |
2009-03-15 | increased buffer size in client handler and added missing variable | Nikias Bassen | 1 | -2/+2 | |
initialization. | |||||
2009-03-12 | changed the usbReceive buffer to a per-device buffer instead | Nikias Bassen | 1 | -1/+2 | |
of one global buffer for all devices (untested but should work). | |||||
2009-03-08 | Some more debugging output and more mutexes to help resolve the | Nikias Bassen | 1 | -4/+26 | |
f***ing SIGSEVs. | |||||
2009-03-04 | Modified handshake sequence so that connect request can be made without | Nikias Bassen | 1 | -45/+69 | |
prior hello, just as the usbmux-proxy utitliy does and most likely the original usbmuxd works too: - client opens a first connection to usbmuxd, sends hello, and receives the device list in return - client opens a second connection, sends a connect request and after successful connect the data packets are transferred via this connection. So the second connection does not begin with a hello but with a connection request directly -- currently the first connection still waits for a connect request but closes down if nothing is received. Changed all stdout to stderr in main.c | |||||
2009-02-27 | Removed the (already commented out) reader_mutex, as it is not needed, and ↵ | Nikias Bassen | 1 | -12/+0 | |
iphone_mux_pullbulk is only running once per device and the iphone_mux_recv_timeout function does it's own locking. | |||||
2009-02-27 | 1) Now, every device is only handled by one thread for bulk usb reading | Nikias Bassen | 1 | -73/+110 | |
instead of one thread for each connection to the same device. 2) Removed usbmuxd_accept_thread and moved code into main() directly. | |||||
2009-02-26 | proper multi-device support (untested) | Nikias Bassen | 1 | -18/+23 | |
2009-02-25 | A Readme, Makefile updates and cosmetic changes. | Paul Sladen | 1 | -0/+853 | |