Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-08-09 | Reduce buffer size to prevent connection to freak out. | Nikias Bassen | 1 | -1/+1 | |
There's a problem with packets larger than 65535 bytes, I suppose this has something to do with the length16 field in the usbmux_tcp_header. | |||||
2009-08-09 | Added mutex to prevent garbled debugging output (esp. packet data) | Nikias Bassen | 1 | -1/+11 | |
2009-08-05 | Updated AUTHORS. | Nikias Bassen | 1 | -0/+2 | |
2009-08-04 | Use udev -x/-u in udev rules | Bastien Nocera | 1 | -2/+2 | |
This will make them work on non-Debian distributions. Signed-off-by: Nikias Bassen <nikias@gmx.li> | |||||
2009-08-04 | Fix compile-time warnings | Bastien Nocera | 1 | -9/+9 | |
Signed-off-by: Nikias Bassen <nikias@gmx.li> | |||||
2009-08-04 | udev operation mode; -x and -X options to exit a running instance | Nikias Bassen | 1 | -6/+55 | |
In udev mode (-u|--udev) the return value is 0 if another instance is already running -x|--exit tells a running instance to exit by sending signal 3 (SIGQUIT) -X|--force-exit tells a running instance to exit even if devices are still connected by sending signal 15 (SIGTERM) | |||||
2009-08-04 | Bump version to 0.1.4 | Nikias Bassen | 1 | -1/+1 | |
2009-08-04 | Revert "Use udev mode in the udev rules"v0.1.3 | Nikias Bassen | 1 | -2/+2 | |
This reverts commit 91fc30c3247dbc41ce2dfcedfd6086c513ffa80a. Not working as expected. | |||||
2009-08-04 | Revert "Add udev mode of operation" | Nikias Bassen | 1 | -21/+4 | |
This reverts commit b7d4f48d7e85c43f0dd1111619acf79aba535371. Not working as expected. | |||||
2009-08-03 | Removed unused commented out code. | Nikias Bassen | 1 | -44/+0 | |
2009-08-03 | Bump version to 0.1.3 | Nikias Bassen | 1 | -1/+1 | |
2009-08-03 | Use udev mode in the udev rulesv0.1.2 | Bastien Nocera | 1 | -2/+2 | |
Otherwise this only works on Debian-based systems. Signed-off-by: Nikias Bassen <nikias@gmx.li> | |||||
2009-08-03 | Add udev mode of operation | Bastien Nocera | 1 | -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-03 | Bump version to 0.1.2 | Nikias Bassen | 1 | -1/+1 | |
2009-08-03 | Fix build warnings | Bastien Nocera | 2 | -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-03 | Fix usb communication problem | Nikias Bassen | 1 | -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-03 | Revert "Workaround for usb communication issue aka 'N*128 problem' or 'N*512 ↵ | Nikias Bassen | 1 | -59/+10 | |
problem'" This reverts commit 3d517f6879b0c476a2e1ac9a55bb7d436977e3b6. | |||||
2009-08-03 | Revert "include config.h and defined ENABLE_HACKS" | Nikias Bassen | 2 | -19/+0 | |
This reverts commit 6fbd2a72122d6bcd70edbf599baa7465e3e9acb6. | |||||
2009-08-03 | Revert "Added missing __func__ to printf" | Nikias Bassen | 1 | -1/+1 | |
This reverts commit 843db538ed4b75d0d5943f0df5ba7ab1ce4e65f9. | |||||
2009-08-02 | Added missing __func__ to printfv0.1.1 | Nikias Bassen | 1 | -1/+1 | |
2009-08-02 | Bump version to 0.1.1 | Nikias Bassen | 1 | -1/+1 | |
2009-08-02 | include config.h and defined ENABLE_HACKS | Nikias Bassen | 2 | -0/+19 | |
Use --disable-hacks to NOT enable hacks like the N*128/N*512 hack when running configure. Hacks are enabled by default. | |||||
2009-08-02 | Automatically execute configure from inside autogen.sh | Nikias Bassen | 1 | -0/+4 | |
2009-08-02 | Workaround for usb communication issue aka 'N*128 problem' or 'N*512 problem' | Nikias Bassen | 1 | -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-02 | Replaced HEADERLEN with sizeof(usbmux_tcp_header) | Nikias Bassen | 1 | -7/+6 | |
2009-07-13 | Added support for PTP + Apple Mobile Device + Apple USB Ethernet interfacesv0.1.0 | Nikias Bassen | 1 | -1/+1 | |
by setting to the highest configuration value available(thanks Martin). | |||||
2009-06-29 | use TCP_RST instead of TCP_FIN when closing the connection so the device ↵ | Nikias Bassen | 1 | -1/+1 | |
does not complain with messages like handleMuxTCPInput th.th_flags = 0x1, not TH_ACK(0x10) | |||||
2009-06-20 | Do not wait for connection request after scan request | Nikias Bassen | 1 | -2/+4 | |
2009-06-20 | removed debugging output | Nikias Bassen | 1 | -4/+1 | |
2009-06-20 | hopefully fixed race condition on connection setup | Nikias Bassen | 3 | -0/+37 | |
2009-06-19 | Add product ids to support iPhone 3GS | Martin Szulecki | 2 | -4/+4 | |
Signed-off-by: Nikias Bassen <nikias@gmx.li> | |||||
2009-06-15 | removed some #ifdefs to make debugging output more verbose | Nikias Bassen | 1 | -10/+3 | |
2009-06-15 | Additional mutex when writing to device. | Nikias Bassen | 1 | -2/+4 | |
2009-05-24 | Make udev symlink rules work with recent udev by using usb_id | Nikias Bassen | 1 | -2/+2 | |
2009-05-24 | Removed parameter -p and added parameter -d to allow to drop privileges. | Nikias Bassen | 1 | -7/+7 | |
Default is to NOT drop the privileges as is causes permission problems on some systems. | |||||
2009-05-24 | Make udev rules set the right usb config and create pretty usbmux symlinks | Martin Szulecki | 1 | -24/+10 | |
Signed-off-by: Nikias Bassen <nikias@gmx.li> | |||||
2009-05-23 | Make usb enumeration work properly. | Nikias Bassen | 2 | -43/+36 | |
2009-05-23 | Enable libusb debugging when verbose is >= 2 | Nikias Bassen | 1 | -0/+3 | |
2009-05-23 | Some debugging output for usb_open(). | Nikias Bassen | 2 | -6/+8 | |
2009-05-23 | Debugging: print correct usb bus location and dev filename. | Nikias Bassen | 1 | -3/+3 | |
2009-05-21 | Added parameter -p to prevent usbmuxd from dropping privileges | Nikias Bassen | 1 | -5/+12 | |
(see this as a workaround for systems where the usb device access is restricted) | |||||
2009-05-19 | Let the daemon terminate only when no more device is attached | Nikias Bassen | 2 | -16/+31 | |
2009-05-19 | modified udev rules file to reflect autoconf prefix specification | Nikias Bassen | 2 | -2/+3 | |
2009-05-19 | WTF?! echo mkdir m4 --> mkdir m4. Now it's correct. | Nikias Bassen | 1 | -1/+1 | |
2009-05-19 | Create m4 directory if not present. | Nikias Bassen | 1 | -0/+1 | |
2009-05-18 | renamed libusbmuxd-1.0.pc.in to libusbmuxd.pc.in | Nikias Bassen | 3 | -2/+2 | |
2009-05-18 | Added pkgconfig file for usbmuxd. | Nikias Bassen | 3 | -0/+16 | |
2009-05-18 | Added usbmuxd_recv, usbmuxd_recv_timeout, usbmuxd_send, and usbmuxd_disconnect | Nikias Bassen | 2 | -0/+92 | |
2009-05-18 | mall change to recv_buf_timeout for easier debugging. | Nikias Bassen | 1 | -1/+4 | |
2009-05-05 | Makefile removed. | Nikias Bassen | 1 | -641/+0 | |