summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2009-08-03Add udev mode of operationGravatar Bastien Nocera1-4/+21
When starting up, force background operation when in udev mode and don't error out when already running. When disconnecting, check if there are any devices left-over, and exit if not. Signed-off-by: Nikias Bassen <nikias@gmx.li>
2009-08-03Fix build warningsGravatar Bastien Nocera2-3/+3
usbmux.c: In function ‘usbmux_free_device’: usbmux.c:412: warning: ‘bytes’ may be used uninitialized in this function main.c: In function ‘usbmuxd_client_init_thread’: main.c:197: warning: dereferencing pointer ‘s_req.55’ does break strict-aliasing rules main.c:613: note: initialized from here main.c:944: warning: ‘j’ may be used uninitialized in this function Signed-off-by: Nikias Bassen <nikias@gmx.li>
2009-08-03Fix usb communication problemGravatar Nikias Bassen1-1/+32
To do this properly, we just have to send an additional zero length usb packet when we encounter a packet of size wMaxPacketSize or one of its multiplicants.
2009-08-03Revert "Workaround for usb communication issue aka 'N*128 problem' or 'N*512 ↵Gravatar Nikias Bassen1-59/+10
problem'" This reverts commit 3d517f6879b0c476a2e1ac9a55bb7d436977e3b6.
2009-08-03Revert "include config.h and defined ENABLE_HACKS"Gravatar Nikias Bassen1-5/+0
This reverts commit 6fbd2a72122d6bcd70edbf599baa7465e3e9acb6.
2009-08-03Revert "Added missing __func__ to printf"Gravatar Nikias Bassen1-1/+1
This reverts commit 843db538ed4b75d0d5943f0df5ba7ab1ce4e65f9.
2009-08-02Added missing __func__ to printfv0.1.1Gravatar Nikias Bassen1-1/+1
2009-08-02include config.h and defined ENABLE_HACKSGravatar Nikias Bassen1-0/+5
Use --disable-hacks to NOT enable hacks like the N*128/N*512 hack when running configure. Hacks are enabled by default.
2009-08-02Workaround for usb communication issue aka 'N*128 problem' or 'N*512 problem'Gravatar Nikias Bassen1-10/+59
For some strange reason packets that are N*128 bytes long via USB 1.1, or N*512 bytes long via USB 2.0, the device will not send an answer and any following packet will cause a connection reset. See this as a workaround until the usb issue has been resolved.
2009-08-02Replaced HEADERLEN with sizeof(usbmux_tcp_header)Gravatar Nikias Bassen1-7/+6
2009-06-29use TCP_RST instead of TCP_FIN when closing the connection so the device ↵Gravatar Nikias Bassen1-1/+1
does not complain with messages like handleMuxTCPInput th.th_flags = 0x1, not TH_ACK(0x10)
2009-06-20Do not wait for connection request after scan requestGravatar Nikias Bassen1-2/+4
2009-06-20removed debugging outputGravatar Nikias Bassen1-4/+1
2009-06-20hopefully fixed race condition on connection setupGravatar Nikias Bassen3-0/+37
2009-06-19Add product ids to support iPhone 3GSGravatar Martin Szulecki1-2/+2
Signed-off-by: Nikias Bassen <nikias@gmx.li>
2009-06-15removed some #ifdefs to make debugging output more verboseGravatar Nikias Bassen1-10/+3
2009-06-15Additional mutex when writing to device.Gravatar Nikias Bassen1-2/+4
2009-05-24Removed parameter -p and added parameter -d to allow to drop privileges.Gravatar Nikias Bassen1-7/+7
Default is to NOT drop the privileges as is causes permission problems on some systems.
2009-05-23Make usb enumeration work properly.Gravatar Nikias Bassen2-43/+36
2009-05-23Enable libusb debugging when verbose is >= 2Gravatar Nikias Bassen1-0/+3
2009-05-23Some debugging output for usb_open().Gravatar Nikias Bassen2-6/+8
2009-05-23Debugging: print correct usb bus location and dev filename.Gravatar Nikias Bassen1-3/+3
2009-05-21Added parameter -p to prevent usbmuxd from dropping privilegesGravatar Nikias Bassen1-5/+12
(see this as a workaround for systems where the usb device access is restricted)
2009-05-19Let the daemon terminate only when no more device is attachedGravatar Nikias Bassen1-15/+30
2009-05-18Added usbmuxd_recv, usbmuxd_recv_timeout, usbmuxd_send, and usbmuxd_disconnectGravatar Nikias Bassen2-0/+92
2009-05-18mall change to recv_buf_timeout for easier debugging.Gravatar Nikias Bassen1-1/+4
2009-05-04null children[i] pointers after freeing them and check for errors whenGravatar Nikias Bassen1-3/+10
calling freopen (prevents compiler warnings).
2009-05-04Use autotools build system and add licenseGravatar Martin Szulecki9-0/+3317
Signed-off-by: Nikias Bassen <nikias@gmx.li>