summaryrefslogtreecommitdiffstats
path: root/main.c
AgeCommit message (Collapse)AuthorFilesLines
2009-04-13[URGENT][BUGFIX] use device_count++ instead of device++. No further comment.Gravatar Nikias Bassen1-1/+1
2009-04-12better error handling, some cleanup, and changed confusingGravatar Nikias Bassen1-73/+55
struct/variable naming.
2009-04-09better(?) error handlingGravatar Nikias Bassen1-6/+16
2009-04-08Start bulk reader thread _after_ successfully creating a connection toGravatar Nikias Bassen1-2/+9
to prevent pthread locking with uninitialized locking variable. Still only started once per device.
2009-04-08added --exit-on-no-devices option.Gravatar Nikias Bassen1-1/+42
2009-04-08Implemented lockfile stuff to prevent multiple running instances.Gravatar Nikias Bassen1-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.hGravatar Paul Sladen1-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-28debugging output fixedGravatar Nikias Bassen1-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-27renamed struct usbmuxd_device_info_request to usbmuxd_device_info_recordGravatar Nikias Bassen1-9/+9
as it is infact an informational record for the client program and not a request.
2009-03-27Make all fprintf(stderr) be >= verbose levelGravatar Paul Sladen1-80/+89
Signed-off-by: Nikias Bassen <nikias@gmx.li>
2009-03-23changed timeout in handleConnectRequestGravatar Nikias Bassen1-12/+12
renamed hello request to scan request
2009-03-19forgot setting device_use_count variable in cleanup codeGravatar Nikias Bassen1-0/+2
2009-03-15increased buffer size in client handler and added missing variableGravatar Nikias Bassen1-2/+2
initialization.
2009-03-12changed the usbReceive buffer to a per-device buffer insteadGravatar Nikias Bassen1-1/+2
of one global buffer for all devices (untested but should work).
2009-03-08Some more debugging output and more mutexes to help resolve theGravatar Nikias Bassen1-4/+26
f***ing SIGSEVs.
2009-03-04Modified handshake sequence so that connect request can be made withoutGravatar Nikias Bassen1-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-27Removed the (already commented out) reader_mutex, as it is not needed, and ↵Gravatar Nikias Bassen1-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-271) Now, every device is only handled by one thread for bulk usb readingGravatar Nikias Bassen1-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-26proper multi-device support (untested)Gravatar Nikias Bassen1-18/+23
2009-02-25A Readme, Makefile updates and cosmetic changes.Gravatar Paul Sladen1-0/+853