Code Monkey home page Code Monkey logo

usbfluxd's Introduction

About

Redirects the standard usbmuxd socket to allow connections to local and remote usbmuxd instances so remote devices appear connected locally.

Installation

Copy usbfluxd binary to a location included in $PATH, for example /usr/local/sbin:

sudo cp usbfluxd /usr/local/sbin/
export PATH=/usr/local/sbin:${PATH}

Usage

Note: usbfluxd requires root permissions to run.

To start usbfluxd, run:

sudo usbfluxd

It will log to syslog by default. Usbfluxd can be run in foreground using -f, and also with increased verbosity by adding -v to the command line. Multiple -v can be passed.

Please be aware that all usbmuxd-aware apps like Xcode or iTunes need to be restarted so they will talk to usbfluxd instead of the original usbmuxd.

To stop usbfluxd immediately, run:

sudo killall usbfluxd

Also after stopping usbfluxd, remember to restart any app that relies on usbmuxd so it returns to the original state.

On Linux you may need to sudo systemctl restart usbmuxd.

Build Requirements

Development Packages of: libplist-2.0 libavahi-client-dev

Software: make autoheader automake autoconf libtool pkg-config gcc

Installation From Source

To compile run:

# brew install make automake autoconf libtool pkg-config gcc libimobiledevice usbmuxd

git clone https://github.com/corellium/usbfluxd.git
cd usbfluxd

./autogen.sh
make
sudo make install

Also available from the Arch User Repository for Linux hosts: https://aur.archlinux.org/packages/usbfluxd/

Linux Usage

Connecting your device over USB on Linux allows you to expose usbfluxd on port 5000 to another system on the same network.

Ensure usbmuxd, socat and usbfluxd are installed.

Start the usbmuxd daemon on Linux

sudo systemctl start usbmuxd

Start avahi-daemon for small-scale mDNS

sudo avahi-daemon

Start usbfluxd in the foreground

sudo usbfluxd -f -n

Expose /var/run/usbmuxd on port 5000

sudo socat tcp-listen:5000,fork unix-connect:/var/run/usbmuxd

Choose any IP address from ip addr as the source.

Connect to a host running usbfluxd

From the remote host (catch the remote usbfluxd and make it appear local).

# on the destination
export PATH=/usr/local/sbin:${PATH}
sudo usbfluxd -f -r 10.0.0.2:5000

usbfluxd's People

Contributors

bdougsand avatar cmwdotme avatar nikias avatar planetbeing avatar sickcodes avatar strazzere avatar tbodt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

usbfluxd's Issues

Reconnection loop

usbfluxd keeps reconnecting and no devices are shown on macos. I use macos 11.7.10 and tested the host side with a local build on debian and with the aur package on a manjaro system.

On the host the output looks like:

$ sudo usbfluxd -f -n                                                                                                                                                                                   ✔ 
[12:59:26.421][3] usbfluxd v1.2.0 starting up
[12:59:26.421][4] Original usbmuxd socket file renamed: /var/run/usbmuxd -> /var/run/usbmuxd.orig
[12:59:26.421][4] Creating socket
[12:59:26.421][4] New Remote fd 4
[12:59:26.421][3] Initialization complete
[13:03:48.202][4] New client on fd 8 (pid 13665)
[13:03:58.294][4] New client on fd 9 (pid 13668)
[13:03:58.295][4] Client 9 connection closed
[13:03:58.295][4] Disconnecting client 0xa7fee0 fd 9
[13:04:08.377][4] New client on fd 9 (pid 13670)
[13:04:08.377][4] Client 9 connection closed
[13:04:08.377][4] Disconnecting client 0xa7fee0 fd 9
[13:04:18.466][4] New client on fd 9 (pid 13671)
[13:04:18.468][4] Client 9 connection closed
[13:04:18.468][4] Disconnecting client 0xa7fee0 fd 9
[13:04:28.546][4] New client on fd 9 (pid 13672)
[13:04:28.547][4] Client 9 connection closed
[13:04:28.547][4] Disconnecting client 0xa7fee0 fd 9
[13:04:38.626][4] New client on fd 9 (pid 13674)

And on macOS like this:
image

Looks similar to #16

UAF in client_close

Looks like due to improper bookkeeping client_close is called twice for the same client, which has already been free'd, leading to a UAF.

ASan:

==33430==ERROR: AddressSanitizer: heap-use-after-free on address 0x6080000007a0
at pc 0x55d4554839b3 bp 0x7ffe3219c350 sp 0x7ffe3219c340
READ of size 4 at 0x6080000007a0 thread T0
    #0 0x55d4554839b2 in client_close /usbfluxd/usbfluxd/client.c:238
    #1 0x55d455485059 in client_notify_remote_close /usbfluxd/usbfluxd/client.c:390
    #2 0x55d4554922d8 in usbmux_remote_dispose /usbfluxd/usbfluxd/usbmux_remote.c:914
    #3 0x55d45549113a in remote_mark_dead /usbfluxd/usbfluxd/usbmux_remote.c:552
    #4 0x55d45549253d in usbmux_remote_mark_dead /usbfluxd/usbfluxd/usbmux_remote.c:933
    #5 0x55d4554956c2 in remote_process_recv /usbfluxd/usbfluxd/usbmux_remote.c:1231
    #6 0x55d4554967b6 in usbmux_remote_process /usbfluxd/usbfluxd/usbmux_remote.c:1343
    #7 0x55d455499526 in main_loop /usbfluxd/usbfluxd/main.c:159
    #8 0x55d45549a870 in main /usbfluxd/usbfluxd/main.c:477
    #9 0x7f3ed253bb24 in __libc_start_main (/usr/lib/libc.so.6+0x27b24)
    #10 0x55d45548295d in _start (/usr/local/sbin/usbfluxd+0xa95d)
0x6080000007a0 is located 0 bytes inside of 96-byte region [0x6080000007a0,0x608
000000800)
freed by thread T0 here:
    #0 0x7f3ed2932f19 in __interceptor_free /build/gcc/src/gcc/libsanitizer/asan/asan_malloc_linux.cpp:127
    #1 0x55d455483c29 in client_close /usbfluxd/usbfluxd/client.c:254
    #2 0x55d45548b19d in client_process /usbfluxd/usbfluxd/client.c:1019
    #3 0x55d4554993cf in main_loop /usbfluxd/usbfluxd/main.c:156
    #4 0x55d45549a870 in main /usbfluxd/usbfluxd/main.c:477
    #5 0x7f3ed253bb24 in __libc_start_main (/usr/lib/libc.so.6+0x27b24)
previously allocated by thread T0 here:
    #0 0x7f3ed2933279 in __interceptor_malloc /build/gcc/src/gcc/libsanitizer/asan/asan_malloc_linux.cpp:145
    #1 0x55d45548334c in client_accept /usbfluxd/usbfluxd/client.c:199
    #2 0x55d455499242 in main_loop /usbfluxd/usbfluxd/main.c:149
    #3 0x55d45549a870 in main /usbfluxd/usbfluxd/main.c:477
    #4 0x7f3ed253bb24 in __libc_start_main (/usr/lib/libc.so.6+0x27b24)
SUMMARY: AddressSanitizer: heap-use-after-free /usbfluxd/usbfluxd/client.c:238 in client_close
Shadow bytes around the buggy address:
  0x0c107fff80a0: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff80b0: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff80c0: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff80d0: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff80e0: fa fa fa fa 00 00 00 00 00 00 00 00 00 00 00 00
=>0x0c107fff80f0: fa fa fa fa[fd]fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff8100: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff8110: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff8120: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff8130: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x0c107fff8140: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==33430==ABORTING

Build on Ubuntu gives `/libplist.a passed to --with-static-libplist does not exist`

Hi there,
wanted to build the lib and had some problems.
Needed to install sudo apt install libplist-dev, may could add this to the README (?)

When executing ./autogen.sh I got:

configure: error: The file /libplist.a passed to --with-static-libplist does not exist

I needed to change the with_static_libplist=yes to no
Then it went fine.

Maybe there can be some variable to hand over or set the variable automatically based on the system. Maybe similar has been done here #12

Edit: also needed to add brew install pkg-config and cannot install usbmuxd on Ventura.

Could not find remote mux device for id -1

Hi

when i try to connect to the device i get the following error. I did all the steps provided in git.

usbmux_remote_connect: Could not find remote mux device for id -1

deadlock on remote_list_mutex

usbmux_remote_process takes a lock on remote_list_mutex when checking for remotes that need to be removed:

void usbmux_remote_process(int fd, short events)
{
	struct remote_mux *remote = NULL;
	pthread_mutex_lock(&remote_list_mutex); // taken
	/* find matching remote, but also reap dead remotes */
	FOREACH(struct remote_mux *rm, &remote_list) {
		if (rm->state == REMOTE_DEAD) {
			usbmux_remote_dispose(rm);
		} else if (rm->fd == fd) {
			remote = rm;
			if (events == POLLNVAL) {
				usbfluxd_log(LL_DEBUG, "%s: remote fd %d became invalid", __func__, fd);
				usbmux_remote_dispose(rm);
				remote = NULL;
			}
		}
	} ENDFOREACH
	pthread_mutex_unlock(&remote_list_mutex); // unlocked

However, usbmux_remote_dispose will ultimately call client_close which takes the lock as well via usbmux_remote_notify_client_close:

void usbmux_remote_dispose(struct remote_mux *remote)
{
	usbfluxd_log(LL_INFO, "%s: Disconnecting remote fd %d", __func__, remote->fd);

	close(remote->fd);

	plist_dict_foreach(remote_device_list, remote_device_notify_remove, (void*)remote);
	collection_remove(&remote_list, remote);
	client_remote_unset(remote);
	if (remote->client) {
		client_notify_remote_close(remote->client); // here
	}
... // more code
}

```c
void client_notify_remote_close(struct mux_client *client)
{
	usbfluxd_log(LL_DEBUG, "%s %p", __func__, client);
	client_close(client);
}

void client_close(struct mux_client *client)
{
	usbfluxd_log(LL_INFO, "Disconnecting client %p fd %d", client, client->fd);
	if(client->state == CLIENT_CONNECTING1 || client->state == CLIENT_CONNECTING2) {
		usbfluxd_log(LL_INFO, "Client died mid-connect, aborting device %d connection", client->connect_device);
		client->state = CLIENT_DEAD;
		//device_abort_connect(client->connect_device, client);
	}
	close(client->fd);
	if (client->remote) {
		usbmux_remote_notify_client_close(client->remote); // this takes the lock
	}
... // more code
}

void usbmux_remote_notify_client_close(struct remote_mux *remote)
{
	pthread_mutex_lock(&remote_list_mutex); // remote_list_mutex is taken again, although it's locked already
	remote_close(remote);
	pthread_mutex_unlock(&remote_list_mutex);
}

This will cause usbfluxd to hang after a while. I fixed it by changing remote_list_mutex to be recursive. A patch is attached as well.

Tested on 0723a9a, which is master at the time of writing.
fix_deadlock.patch

iOS 17 problem

I used to use usbfluxd under Ventura running in QEMU with a phone running iOS 15.8, worked like a charm. Now I upgraded to Sonoma and switched phone to one with iOS 17.1, and things broke.

I believe it's an iOS 17 issue as the old phone still works in the new environment as well. Developer mode is enabled, and the output from usbfluxd indicates there's communication going on with usbfluxd on the host OS just like with the old phone, but the new one still doesn't appear in Xcode.

Anybody successfully used usbfluxd with iOS 17? Any ideas what to check?

macOS 14.1.1
Xcode 15.0.1
iPhone SE 2020 with iOS 17.1.1
usbfluxd on host compiled from source, commit 94fef8a
usbfluxd in guest is freshly downloaded from Correlium website

Logs from usbfluxd as Xcode starts:

host
[19:17:33.062][4] New client on fd 6 (pid 42143)
[19:17:33.062][5] process_recv fd 6
[19:17:33.062][4] Client 6 connection closed
[19:17:33.062][4] Disconnecting client 0x55fa0ba5e7b0 fd 6
[19:17:39.847][4] New client on fd 6 (pid 42146)
[19:17:39.847][5] process_recv fd 6
[19:17:39.847][5] process_recv fd 6
[19:17:39.847][5] Client command in fd 6 len 564 ver 1 msg 8 tag 0
[19:17:39.847][5] client_command: Message is Connect client fd 6
[19:17:39.847][5] Client 6 connection request to device 1 port 62078
[19:17:39.847][4] New Remote fd 7
[19:17:39.847][5] remote_send_pkt fd 7 tag 0 msg 8 payload_length 548
[19:17:39.847][5] remote_process_send
[19:17:39.847][5] remote_process_send: sending 564 to usbmuxd (7)
[19:17:39.847][5] remote_process_send: returned 564
[19:17:39.848][5] remote_process_recv
[19:17:39.848][5] remote_process_recv
[19:17:39.848][5] remote_handle_command_result fd 7 len 294 ver 1 msg 8 tag 0
[19:17:39.848][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:39.848][5] send_pkt fd 6 tag 0 msg 8 payload_length 278
[19:17:39.848][5] Remote 7 switching to CONNECTED state
[19:17:39.848][5] process_send
[19:17:39.848][5] process_send: sent 294 (of 294)
[19:17:39.848][5] Client 6 switching to CONNECTED state, remote 7
[19:17:39.848][5] usbmux_remote_process in CONNECTED state
[19:17:39.848][5] usbmux_remote_process: sending 0 bytes to remote (fd 7)
[19:17:39.848][5] remote_process_send
[19:17:39.848][5] Remote 7 OUT process but nothing to send?
[19:17:39.851][5] client_process in CONNECTED state, fd=6
[19:17:39.851][5] read from client 6 to remote buffer
[19:17:39.851][5] client read returned 333
[19:17:39.851][5] usbmux_remote_process in CONNECTED state
[19:17:39.851][5] usbmux_remote_process: sending 333 bytes to remote (fd 7)
[19:17:39.851][5] remote_process_send
[19:17:39.851][5] remote_process_send: sending 333 to usbmuxd (7)
[19:17:39.851][5] remote_process_send: returned 333
[19:17:39.852][5] usbmux_remote_process in CONNECTED state
[19:17:39.852][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:39.852][5] usbmux_remote_process: read 301 bytes from remote (fd 7) requested 524288
[19:17:39.852][5] client_process in CONNECTED state, fd=6
[19:17:39.852][5] writing to client 6 from remote buffer
[19:17:39.852][5] sending 301 bytes to client
[19:17:39.855][4] New client on fd 8 (pid 42147)
[19:17:39.855][5] process_recv fd 8
[19:17:39.855][5] process_recv fd 8
[19:17:39.855][5] Client command in fd 8 len 482 ver 1 msg 8 tag 4
[19:17:39.855][5] client_command: Message is ReadBUID client fd 8
[19:17:39.855][4] New Remote fd 9
[19:17:39.855][5] remote_send_pkt fd 9 tag 4 msg 8 payload_length 466
[19:17:39.855][5] remote_process_send
[19:17:39.855][5] remote_process_send: sending 482 to usbmuxd (9)
[19:17:39.855][5] remote_process_send: returned 482
[19:17:39.855][5] remote_process_recv
[19:17:39.855][5] remote_process_recv
[19:17:39.855][5] remote_handle_command_result fd 9 len 276 ver 1 msg 8 tag 4
[19:17:39.855][5] send_pkt_raw fd 8 buffer_length 16
[19:17:39.855][5] send_pkt_raw fd 8 buffer_length 260
[19:17:39.855][5] process_send
[19:17:39.855][5] process_send: sent 276 (of 276)
[19:17:39.858][5] process_recv fd 8
[19:17:39.858][4] Client 8 connection closed
[19:17:39.858][4] Disconnecting client 0x55fa0bbaf680 fd 8
[19:17:39.858][5] Client 0x55fa0bbaf680 notifying close on remote 0x55fa0bc4feb0
[19:17:39.858][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bc4feb0 fd 9
[19:17:39.859][4] New client on fd 8 (pid 42148)
[19:17:39.860][5] process_recv fd 8
[19:17:39.860][5] process_recv fd 8
[19:17:39.860][5] Client command in fd 8 len 557 ver 1 msg 8 tag 5
[19:17:39.860][5] client_command: Message is ReadPairRecord client fd 8
[19:17:39.860][4] New Remote fd 9
[19:17:39.860][5] remote_send_pkt fd 9 tag 5 msg 8 payload_length 541
[19:17:39.860][5] remote_process_send
[19:17:39.860][5] remote_process_send: sending 557 to usbmuxd (9)
[19:17:39.860][5] remote_process_send: returned 557
[19:17:39.860][5] remote_process_recv
[19:17:39.860][5] remote_process_recv
[19:17:39.860][5] remote_handle_command_result fd 9 len 13154 ver 1 msg 8 tag 5
[19:17:39.860][5] send_pkt_raw fd 8 buffer_length 16
[19:17:39.860][5] send_pkt_raw fd 8 buffer_length 13138
[19:17:39.860][5] process_send
[19:17:39.860][5] process_send: sent 13154 (of 13154)
[19:17:39.864][5] process_recv fd 8
[19:17:39.864][4] Client 8 connection closed
[19:17:39.864][4] Disconnecting client 0x55fa0bbaf680 fd 8
[19:17:39.864][5] Client 0x55fa0bbaf680 notifying close on remote 0x55fa0bc4feb0
[19:17:39.864][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bc4feb0 fd 9
[19:17:39.864][5] client_process in CONNECTED state, fd=6
[19:17:39.864][5] read from client 6 to remote buffer
[19:17:39.864][5] client read returned 488
[19:17:39.864][5] usbmux_remote_process in CONNECTED state
[19:17:39.864][5] usbmux_remote_process: sending 488 bytes to remote (fd 7)
[19:17:39.864][5] remote_process_send
[19:17:39.864][5] remote_process_send: sending 488 to usbmuxd (7)
[19:17:39.864][5] remote_process_send: returned 488
[19:17:39.867][5] usbmux_remote_process in CONNECTED state
[19:17:39.867][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:39.867][5] usbmux_remote_process: read 358 bytes from remote (fd 7) requested 524288
[19:17:39.867][5] client_process in CONNECTED state, fd=6
[19:17:39.867][5] writing to client 6 from remote buffer
[19:17:39.867][5] sending 358 bytes to client
[19:17:39.870][4] New client on fd 8 (pid 42149)
[19:17:39.871][5] process_recv fd 8
[19:17:39.871][5] process_recv fd 8
[19:17:39.871][5] Client command in fd 8 len 564 ver 1 msg 8 tag 0
[19:17:39.871][5] client_command: Message is Connect client fd 8
[19:17:39.871][5] Client 8 connection request to device 1 port 62078
[19:17:39.871][4] New Remote fd 9
[19:17:39.871][5] remote_send_pkt fd 9 tag 0 msg 8 payload_length 548
[19:17:39.871][5] remote_process_send
[19:17:39.871][5] remote_process_send: sending 564 to usbmuxd (9)
[19:17:39.871][5] remote_process_send: returned 564
[19:17:39.872][5] remote_process_recv
[19:17:39.872][5] remote_process_recv
[19:17:39.872][5] remote_handle_command_result fd 9 len 294 ver 1 msg 8 tag 0
[19:17:39.872][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:39.872][5] send_pkt fd 8 tag 0 msg 8 payload_length 278
[19:17:39.872][5] Remote 9 switching to CONNECTED state
[19:17:39.872][5] process_send
[19:17:39.872][5] process_send: sent 294 (of 294)
[19:17:39.872][5] Client 8 switching to CONNECTED state, remote 9
[19:17:39.872][5] usbmux_remote_process in CONNECTED state
[19:17:39.872][5] usbmux_remote_process: sending 0 bytes to remote (fd 9)
[19:17:39.872][5] remote_process_send
[19:17:39.872][5] Remote 9 OUT process but nothing to send?
[19:17:39.874][5] client_process in CONNECTED state, fd=8
[19:17:39.874][5] read from client 8 to remote buffer
[19:17:39.874][5] client read returned 333
[19:17:39.874][5] usbmux_remote_process in CONNECTED state
[19:17:39.874][5] usbmux_remote_process: sending 333 bytes to remote (fd 9)
[19:17:39.874][5] remote_process_send
[19:17:39.874][5] remote_process_send: sending 333 to usbmuxd (9)
[19:17:39.874][5] remote_process_send: returned 333
[19:17:39.875][5] usbmux_remote_process in CONNECTED state
[19:17:39.875][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:39.875][5] usbmux_remote_process: read 301 bytes from remote (fd 9) requested 524288
[19:17:39.875][5] client_process in CONNECTED state, fd=8
[19:17:39.875][5] writing to client 8 from remote buffer
[19:17:39.875][5] sending 301 bytes to client
[19:17:39.877][5] client_process in CONNECTED state, fd=8
[19:17:39.877][5] read from client 8 to remote buffer
[19:17:39.877][5] client read returned 381
[19:17:39.877][5] usbmux_remote_process in CONNECTED state
[19:17:39.877][5] usbmux_remote_process: sending 381 bytes to remote (fd 9)
[19:17:39.877][5] remote_process_send
[19:17:39.877][5] remote_process_send: sending 381 to usbmuxd (9)
[19:17:39.877][5] remote_process_send: returned 381
[19:17:39.878][5] usbmux_remote_process in CONNECTED state
[19:17:39.878][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:39.878][5] usbmux_remote_process: read 331 bytes from remote (fd 9) requested 524288
[19:17:39.878][5] client_process in CONNECTED state, fd=8
[19:17:39.878][5] writing to client 8 from remote buffer
[19:17:39.878][5] sending 331 bytes to client
[19:17:39.880][5] client_process in CONNECTED state, fd=8
[19:17:39.880][5] read from client 8 to remote buffer
[19:17:39.880][5] client read returned 0
[19:17:39.880][4] Client 8 connection closed
[19:17:39.880][4] Disconnecting client 0x55fa0bbaf680 fd 8
[19:17:39.880][5] Client 0x55fa0bbaf680 notifying close on remote 0x55fa0bc4feb0
[19:17:39.880][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bc4feb0 fd 9
[19:17:39.884][4] New client on fd 8 (pid 42150)
[19:17:39.884][5] process_recv fd 8
[19:17:39.884][5] process_recv fd 8
[19:17:39.884][5] Client command in fd 8 len 564 ver 1 msg 8 tag 0
[19:17:39.884][5] client_command: Message is Connect client fd 8
[19:17:39.884][5] Client 8 connection request to device 1 port 62078
[19:17:39.884][4] New Remote fd 9
[19:17:39.884][5] remote_send_pkt fd 9 tag 0 msg 8 payload_length 548
[19:17:39.884][5] remote_process_send
[19:17:39.884][5] remote_process_send: sending 564 to usbmuxd (9)
[19:17:39.884][5] remote_process_send: returned 564
[19:17:39.885][5] remote_process_recv
[19:17:39.885][5] remote_process_recv
[19:17:39.885][5] remote_handle_command_result fd 9 len 294 ver 1 msg 8 tag 0
[19:17:39.885][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:39.885][5] send_pkt fd 8 tag 0 msg 8 payload_length 278
[19:17:39.885][5] Remote 9 switching to CONNECTED state
[19:17:39.885][5] process_send
[19:17:39.885][5] process_send: sent 294 (of 294)
[19:17:39.885][5] Client 8 switching to CONNECTED state, remote 9
[19:17:39.885][5] usbmux_remote_process in CONNECTED state
[19:17:39.885][5] usbmux_remote_process: sending 0 bytes to remote (fd 9)
[19:17:39.885][5] remote_process_send
[19:17:39.885][5] Remote 9 OUT process but nothing to send?
[19:17:39.888][5] client_process in CONNECTED state, fd=8
[19:17:39.888][5] read from client 8 to remote buffer
[19:17:39.888][5] client read returned 333
[19:17:39.888][5] usbmux_remote_process in CONNECTED state
[19:17:39.888][5] usbmux_remote_process: sending 333 bytes to remote (fd 9)
[19:17:39.888][5] remote_process_send
[19:17:39.888][5] remote_process_send: sending 333 to usbmuxd (9)
[19:17:39.888][5] remote_process_send: returned 333
[19:17:39.889][5] usbmux_remote_process in CONNECTED state
[19:17:39.889][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:39.889][5] usbmux_remote_process: read 301 bytes from remote (fd 9) requested 524288
[19:17:39.889][5] client_process in CONNECTED state, fd=8
[19:17:39.889][5] writing to client 8 from remote buffer
[19:17:39.889][5] sending 301 bytes to client
[19:17:39.891][5] client_process in CONNECTED state, fd=8
[19:17:39.891][5] read from client 8 to remote buffer
[19:17:39.891][5] client read returned 378
[19:17:39.891][5] usbmux_remote_process in CONNECTED state
[19:17:39.891][5] usbmux_remote_process: sending 378 bytes to remote (fd 9)
[19:17:39.891][5] remote_process_send
[19:17:39.891][5] remote_process_send: sending 378 to usbmuxd (9)
[19:17:39.891][5] remote_process_send: returned 378
[19:17:39.892][5] usbmux_remote_process in CONNECTED state
[19:17:39.892][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:39.892][5] usbmux_remote_process: read 331 bytes from remote (fd 9) requested 524288
[19:17:39.892][5] client_process in CONNECTED state, fd=8
[19:17:39.892][5] writing to client 8 from remote buffer
[19:17:39.892][5] sending 331 bytes to client
[19:17:39.895][5] client_process in CONNECTED state, fd=8
[19:17:39.895][5] read from client 8 to remote buffer
[19:17:39.895][5] client read returned 0
[19:17:39.895][4] Client 8 connection closed
[19:17:39.895][4] Disconnecting client 0x55fa0bbaf680 fd 8
[19:17:39.895][5] Client 0x55fa0bbaf680 notifying close on remote 0x55fa0bc4feb0
[19:17:39.895][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bc4feb0 fd 9
[19:17:39.896][5] client_process in CONNECTED state, fd=6
[19:17:39.896][5] read from client 6 to remote buffer
[19:17:39.896][5] client read returned 318
[19:17:39.896][5] usbmux_remote_process in CONNECTED state
[19:17:39.896][5] usbmux_remote_process: sending 318 bytes to remote (fd 7)
[19:17:39.896][5] remote_process_send
[19:17:39.896][5] remote_process_send: sending 318 to usbmuxd (7)
[19:17:39.896][5] remote_process_send: returned 318
[19:17:39.927][5] usbmux_remote_process in CONNECTED state
[19:17:39.927][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:39.927][5] usbmux_remote_process: read 1250 bytes from remote (fd 7) requested 524288
[19:17:39.927][5] client_process in CONNECTED state, fd=6
[19:17:39.927][5] writing to client 6 from remote buffer
[19:17:39.927][5] sending 1250 bytes to client
[19:17:40.149][5] client_process in CONNECTED state, fd=6
[19:17:40.149][5] read from client 6 to remote buffer
[19:17:40.149][5] client read returned 1149
[19:17:40.149][5] usbmux_remote_process in CONNECTED state
[19:17:40.149][5] usbmux_remote_process: sending 1149 bytes to remote (fd 7)
[19:17:40.149][5] remote_process_send
[19:17:40.149][5] remote_process_send: sending 1149 to usbmuxd (7)
[19:17:40.149][5] remote_process_send: returned 1149
[19:17:40.170][5] usbmux_remote_process in CONNECTED state
[19:17:40.170][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.170][5] usbmux_remote_process: read 51 bytes from remote (fd 7) requested 524288
[19:17:40.170][5] client_process in CONNECTED state, fd=6
[19:17:40.170][5] writing to client 6 from remote buffer
[19:17:40.170][5] sending 51 bytes to client
[19:17:40.174][5] client_process in CONNECTED state, fd=6
[19:17:40.174][5] read from client 6 to remote buffer
[19:17:40.174][5] client read returned 439
[19:17:40.174][5] usbmux_remote_process in CONNECTED state
[19:17:40.174][5] usbmux_remote_process: sending 439 bytes to remote (fd 7)
[19:17:40.174][5] remote_process_send
[19:17:40.174][5] remote_process_send: sending 439 to usbmuxd (7)
[19:17:40.174][5] remote_process_send: returned 439
[19:17:40.175][5] usbmux_remote_process in CONNECTED state
[19:17:40.175][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.175][5] usbmux_remote_process: read 389 bytes from remote (fd 7) requested 524288
[19:17:40.175][5] client_process in CONNECTED state, fd=6
[19:17:40.175][5] writing to client 6 from remote buffer
[19:17:40.175][5] sending 389 bytes to client
[19:17:40.179][5] client_process in CONNECTED state, fd=6
[19:17:40.179][5] read from client 6 to remote buffer
[19:17:40.179][5] client read returned 511
[19:17:40.179][5] usbmux_remote_process in CONNECTED state
[19:17:40.179][5] usbmux_remote_process: sending 511 bytes to remote (fd 7)
[19:17:40.179][5] remote_process_send
[19:17:40.179][5] remote_process_send: sending 511 to usbmuxd (7)
[19:17:40.179][5] remote_process_send: returned 511
[19:17:40.180][5] usbmux_remote_process in CONNECTED state
[19:17:40.180][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.180][5] usbmux_remote_process: read 445 bytes from remote (fd 7) requested 524288
[19:17:40.180][5] client_process in CONNECTED state, fd=6
[19:17:40.180][5] writing to client 6 from remote buffer
[19:17:40.180][5] sending 445 bytes to client
[19:17:40.188][5] client_process in CONNECTED state, fd=6
[19:17:40.188][5] read from client 6 to remote buffer
[19:17:40.188][5] client read returned 470
[19:17:40.188][5] usbmux_remote_process in CONNECTED state
[19:17:40.188][5] usbmux_remote_process: sending 470 bytes to remote (fd 7)
[19:17:40.188][5] remote_process_send
[19:17:40.188][5] remote_process_send: sending 470 to usbmuxd (7)
[19:17:40.188][5] remote_process_send: returned 470
[19:17:40.190][5] usbmux_remote_process in CONNECTED state
[19:17:40.190][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.190][5] usbmux_remote_process: read 300 bytes from remote (fd 7) requested 524288
[19:17:40.190][5] client_process in CONNECTED state, fd=6
[19:17:40.190][5] writing to client 6 from remote buffer
[19:17:40.190][5] sending 300 bytes to client
[19:17:40.192][5] client_process in CONNECTED state, fd=6
[19:17:40.192][5] read from client 6 to remote buffer
[19:17:40.192][5] client read returned 31
[19:17:40.192][5] usbmux_remote_process in CONNECTED state
[19:17:40.192][5] usbmux_remote_process: sending 31 bytes to remote (fd 7)
[19:17:40.192][5] remote_process_send
[19:17:40.192][5] remote_process_send: sending 31 to usbmuxd (7)
[19:17:40.192][5] remote_process_send: returned 31
[19:17:40.193][5] usbmux_remote_process in CONNECTED state
[19:17:40.193][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.193][5] usbmux_remote_process: read 31 bytes from remote (fd 7) requested 524288
[19:17:40.193][5] client_process in CONNECTED state, fd=6
[19:17:40.193][5] writing to client 6 from remote buffer
[19:17:40.193][5] sending 31 bytes to client
[19:17:40.210][5] client_process in CONNECTED state, fd=6
[19:17:40.210][5] read from client 6 to remote buffer
[19:17:40.210][5] client read returned 0
[19:17:40.210][4] Client 6 connection closed
[19:17:40.210][4] Disconnecting client 0x55fa0ba5e7b0 fd 6
[19:17:40.210][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:40.210][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 7
[19:17:40.213][4] New client on fd 6 (pid 42151)
[19:17:40.216][5] process_recv fd 6
[19:17:40.216][5] process_recv fd 6
[19:17:40.216][5] Client command in fd 6 len 564 ver 1 msg 8 tag 0
[19:17:40.216][5] client_command: Message is Connect client fd 6
[19:17:40.216][5] Client 6 connection request to device 1 port 62078
[19:17:40.216][4] New Remote fd 7
[19:17:40.216][5] remote_send_pkt fd 7 tag 0 msg 8 payload_length 548
[19:17:40.216][5] remote_process_send
[19:17:40.216][5] remote_process_send: sending 564 to usbmuxd (7)
[19:17:40.216][5] remote_process_send: returned 564
[19:17:40.217][5] remote_process_recv
[19:17:40.217][5] remote_process_recv
[19:17:40.217][5] remote_handle_command_result fd 7 len 294 ver 1 msg 8 tag 0
[19:17:40.217][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.217][5] send_pkt fd 6 tag 0 msg 8 payload_length 278
[19:17:40.217][5] Remote 7 switching to CONNECTED state
[19:17:40.217][5] process_send
[19:17:40.217][5] process_send: sent 294 (of 294)
[19:17:40.217][5] Client 6 switching to CONNECTED state, remote 7
[19:17:40.217][5] usbmux_remote_process in CONNECTED state
[19:17:40.217][5] usbmux_remote_process: sending 0 bytes to remote (fd 7)
[19:17:40.217][5] remote_process_send
[19:17:40.217][5] Remote 7 OUT process but nothing to send?
[19:17:40.222][4] New client on fd 8 (pid 42152)
[19:17:40.222][5] process_recv fd 8
[19:17:40.222][5] process_recv fd 8
[19:17:40.222][5] Client command in fd 8 len 564 ver 1 msg 8 tag 0
[19:17:40.222][5] client_command: Message is Connect client fd 8
[19:17:40.222][5] Client 8 connection request to device 1 port 62078
[19:17:40.222][4] New Remote fd 9
[19:17:40.222][5] remote_send_pkt fd 9 tag 0 msg 8 payload_length 548
[19:17:40.222][5] remote_process_send
[19:17:40.223][5] remote_process_send: sending 564 to usbmuxd (9)
[19:17:40.223][5] remote_process_send: returned 564
[19:17:40.223][5] client_process in CONNECTED state, fd=6
[19:17:40.223][5] read from client 6 to remote buffer
[19:17:40.223][5] client read returned 333
[19:17:40.223][5] usbmux_remote_process in CONNECTED state
[19:17:40.223][5] usbmux_remote_process: sending 333 bytes to remote (fd 7)
[19:17:40.223][5] remote_process_send
[19:17:40.223][5] remote_process_send: sending 333 to usbmuxd (7)
[19:17:40.223][5] remote_process_send: returned 333
[19:17:40.223][5] remote_process_recv
[19:17:40.223][5] remote_process_recv
[19:17:40.223][5] remote_handle_command_result fd 9 len 294 ver 1 msg 8 tag 0
[19:17:40.223][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.223][5] send_pkt fd 8 tag 0 msg 8 payload_length 278
[19:17:40.223][5] Remote 9 switching to CONNECTED state
[19:17:40.223][5] process_send
[19:17:40.223][5] process_send: sent 294 (of 294)
[19:17:40.223][5] Client 8 switching to CONNECTED state, remote 9
[19:17:40.223][5] usbmux_remote_process in CONNECTED state
[19:17:40.223][5] usbmux_remote_process: sending 0 bytes to remote (fd 9)
[19:17:40.223][5] remote_process_send
[19:17:40.223][5] Remote 9 OUT process but nothing to send?
[19:17:40.224][5] usbmux_remote_process in CONNECTED state
[19:17:40.224][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.224][5] usbmux_remote_process: read 301 bytes from remote (fd 7) requested 524288
[19:17:40.224][5] client_process in CONNECTED state, fd=6
[19:17:40.224][5] writing to client 6 from remote buffer
[19:17:40.224][5] sending 301 bytes to client
[19:17:40.229][4] New client on fd 10 (pid 42153)
[19:17:40.243][5] process_recv fd 10
[19:17:40.243][5] process_recv fd 10
[19:17:40.243][5] Client command in fd 10 len 482 ver 1 msg 8 tag 9
[19:17:40.243][5] client_command: Message is ReadBUID client fd 10
[19:17:40.243][4] New Remote fd 11
[19:17:40.243][5] remote_send_pkt fd 11 tag 9 msg 8 payload_length 466
[19:17:40.243][5] remote_process_send
[19:17:40.243][5] remote_process_send: sending 482 to usbmuxd (11)
[19:17:40.243][5] remote_process_send: returned 482
[19:17:40.243][5] remote_process_recv
[19:17:40.243][5] remote_process_recv
[19:17:40.243][5] remote_handle_command_result fd 11 len 276 ver 1 msg 8 tag 9
[19:17:40.243][5] send_pkt_raw fd 10 buffer_length 16
[19:17:40.243][5] send_pkt_raw fd 10 buffer_length 260
[19:17:40.243][5] process_send
[19:17:40.243][5] process_send: sent 276 (of 276)
[19:17:40.244][5] client_process in CONNECTED state, fd=8
[19:17:40.244][5] read from client 8 to remote buffer
[19:17:40.244][5] client read returned 333
[19:17:40.244][5] usbmux_remote_process in CONNECTED state
[19:17:40.244][5] usbmux_remote_process: sending 333 bytes to remote (fd 9)
[19:17:40.244][5] remote_process_send
[19:17:40.244][5] remote_process_send: sending 333 to usbmuxd (9)
[19:17:40.244][5] remote_process_send: returned 333
[19:17:40.246][5] usbmux_remote_process in CONNECTED state
[19:17:40.246][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.246][5] usbmux_remote_process: read 4 bytes from remote (fd 9) requested 524288
[19:17:40.246][5] client_process in CONNECTED state, fd=8
[19:17:40.246][5] writing to client 8 from remote buffer
[19:17:40.246][5] sending 4 bytes to client
[19:17:40.246][5] usbmux_remote_process in CONNECTED state
[19:17:40.246][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.246][5] usbmux_remote_process: read 297 bytes from remote (fd 9) requested 524288
[19:17:40.246][5] client_process in CONNECTED state, fd=8
[19:17:40.246][5] writing to client 8 from remote buffer
[19:17:40.246][5] sending 297 bytes to client
[19:17:40.248][5] process_recv fd 10
[19:17:40.248][4] Client 10 connection closed
[19:17:40.248][4] Disconnecting client 0x55fa0bbafae0 fd 10
[19:17:40.248][5] Client 0x55fa0bbafae0 notifying close on remote 0x55fa0ba8eda0
[19:17:40.248][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0ba8eda0 fd 11
[19:17:40.255][4] New client on fd 10 (pid 42154)
[19:17:40.256][5] process_recv fd 10
[19:17:40.256][5] process_recv fd 10
[19:17:40.256][5] Client command in fd 10 len 557 ver 1 msg 8 tag 10
[19:17:40.256][5] client_command: Message is ReadPairRecord client fd 10
[19:17:40.256][4] New Remote fd 11
[19:17:40.256][5] remote_send_pkt fd 11 tag 10 msg 8 payload_length 541
[19:17:40.256][5] remote_process_send
[19:17:40.256][5] remote_process_send: sending 557 to usbmuxd (11)
[19:17:40.256][5] remote_process_send: returned 557
[19:17:40.256][5] remote_process_recv
[19:17:40.256][5] remote_process_recv
[19:17:40.256][5] remote_handle_command_result fd 11 len 13154 ver 1 msg 8 tag 10
[19:17:40.256][5] send_pkt_raw fd 10 buffer_length 16
[19:17:40.256][5] send_pkt_raw fd 10 buffer_length 13138
[19:17:40.256][5] process_send
[19:17:40.256][5] process_send: sent 13154 (of 13154)
[19:17:40.260][5] process_recv fd 10
[19:17:40.260][4] Client 10 connection closed
[19:17:40.260][4] Disconnecting client 0x55fa0bbafae0 fd 10
[19:17:40.260][5] Client 0x55fa0bbafae0 notifying close on remote 0x55fa0ba8eda0
[19:17:40.260][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0ba8eda0 fd 11
[19:17:40.264][5] client_process in CONNECTED state, fd=6
[19:17:40.264][5] read from client 6 to remote buffer
[19:17:40.264][5] client read returned 488
[19:17:40.264][5] usbmux_remote_process in CONNECTED state
[19:17:40.264][5] usbmux_remote_process: sending 488 bytes to remote (fd 7)
[19:17:40.264][5] remote_process_send
[19:17:40.264][5] remote_process_send: sending 488 to usbmuxd (7)
[19:17:40.264][5] remote_process_send: returned 488
[19:17:40.266][5] usbmux_remote_process in CONNECTED state
[19:17:40.266][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.267][5] usbmux_remote_process: read 358 bytes from remote (fd 7) requested 524288
[19:17:40.267][5] client_process in CONNECTED state, fd=6
[19:17:40.267][5] writing to client 6 from remote buffer
[19:17:40.267][5] sending 358 bytes to client
[19:17:40.270][4] New client on fd 10 (pid 42155)
[19:17:40.271][5] process_recv fd 10
[19:17:40.271][5] process_recv fd 10
[19:17:40.271][5] Client command in fd 10 len 564 ver 1 msg 8 tag 0
[19:17:40.271][5] client_command: Message is Connect client fd 10
[19:17:40.271][5] Client 10 connection request to device 1 port 62078
[19:17:40.271][4] New Remote fd 11
[19:17:40.271][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[19:17:40.271][5] remote_process_send
[19:17:40.271][5] remote_process_send: sending 564 to usbmuxd (11)
[19:17:40.271][5] remote_process_send: returned 564
[19:17:40.272][5] remote_process_recv
[19:17:40.272][5] remote_process_recv
[19:17:40.272][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[19:17:40.272][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.272][5] send_pkt fd 10 tag 0 msg 8 payload_length 278
[19:17:40.272][5] Remote 11 switching to CONNECTED state
[19:17:40.272][5] process_send
[19:17:40.272][5] process_send: sent 294 (of 294)
[19:17:40.272][5] Client 10 switching to CONNECTED state, remote 11
[19:17:40.272][5] usbmux_remote_process in CONNECTED state
[19:17:40.272][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[19:17:40.272][5] remote_process_send
[19:17:40.272][5] Remote 11 OUT process but nothing to send?
[19:17:40.274][5] client_process in CONNECTED state, fd=10
[19:17:40.274][5] read from client 10 to remote buffer
[19:17:40.274][5] client read returned 333
[19:17:40.274][5] usbmux_remote_process in CONNECTED state
[19:17:40.274][5] usbmux_remote_process: sending 333 bytes to remote (fd 11)
[19:17:40.274][5] remote_process_send
[19:17:40.274][5] remote_process_send: sending 333 to usbmuxd (11)
[19:17:40.274][5] remote_process_send: returned 333
[19:17:40.275][5] usbmux_remote_process in CONNECTED state
[19:17:40.275][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.275][5] usbmux_remote_process: read 301 bytes from remote (fd 11) requested 524288
[19:17:40.275][5] client_process in CONNECTED state, fd=10
[19:17:40.275][5] writing to client 10 from remote buffer
[19:17:40.275][5] sending 301 bytes to client
[19:17:40.277][5] client_process in CONNECTED state, fd=10
[19:17:40.277][5] read from client 10 to remote buffer
[19:17:40.277][5] client read returned 381
[19:17:40.277][5] usbmux_remote_process in CONNECTED state
[19:17:40.277][5] usbmux_remote_process: sending 381 bytes to remote (fd 11)
[19:17:40.277][5] remote_process_send
[19:17:40.277][5] remote_process_send: sending 381 to usbmuxd (11)
[19:17:40.277][5] remote_process_send: returned 381
[19:17:40.279][5] usbmux_remote_process in CONNECTED state
[19:17:40.279][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.279][5] usbmux_remote_process: read 331 bytes from remote (fd 11) requested 524288
[19:17:40.279][5] client_process in CONNECTED state, fd=10
[19:17:40.279][5] writing to client 10 from remote buffer
[19:17:40.279][5] sending 331 bytes to client
[19:17:40.284][5] client_process in CONNECTED state, fd=10
[19:17:40.284][5] read from client 10 to remote buffer
[19:17:40.284][5] client read returned 0
[19:17:40.284][4] Client 10 connection closed
[19:17:40.284][4] Disconnecting client 0x55fa0bbafae0 fd 10
[19:17:40.284][5] Client 0x55fa0bbafae0 notifying close on remote 0x55fa0ba8eda0
[19:17:40.284][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0ba8eda0 fd 11
[19:17:40.286][4] New client on fd 10 (pid 42156)
[19:17:40.287][5] process_recv fd 10
[19:17:40.287][5] process_recv fd 10
[19:17:40.287][5] Client command in fd 10 len 564 ver 1 msg 8 tag 0
[19:17:40.287][5] client_command: Message is Connect client fd 10
[19:17:40.287][5] Client 10 connection request to device 1 port 62078
[19:17:40.287][4] New Remote fd 11
[19:17:40.287][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[19:17:40.287][5] remote_process_send
[19:17:40.287][5] remote_process_send: sending 564 to usbmuxd (11)
[19:17:40.287][5] remote_process_send: returned 564
[19:17:40.288][5] remote_process_recv
[19:17:40.288][5] remote_process_recv
[19:17:40.288][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[19:17:40.288][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.288][5] send_pkt fd 10 tag 0 msg 8 payload_length 278
[19:17:40.288][5] Remote 11 switching to CONNECTED state
[19:17:40.288][5] process_send
[19:17:40.288][5] process_send: sent 294 (of 294)
[19:17:40.288][5] Client 10 switching to CONNECTED state, remote 11
[19:17:40.288][5] usbmux_remote_process in CONNECTED state
[19:17:40.288][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[19:17:40.288][5] remote_process_send
[19:17:40.288][5] Remote 11 OUT process but nothing to send?
[19:17:40.292][5] client_process in CONNECTED state, fd=10
[19:17:40.292][5] read from client 10 to remote buffer
[19:17:40.292][5] client read returned 333
[19:17:40.292][5] usbmux_remote_process in CONNECTED state
[19:17:40.292][5] usbmux_remote_process: sending 333 bytes to remote (fd 11)
[19:17:40.292][5] remote_process_send
[19:17:40.292][5] remote_process_send: sending 333 to usbmuxd (11)
[19:17:40.292][5] remote_process_send: returned 333
[19:17:40.293][5] usbmux_remote_process in CONNECTED state
[19:17:40.293][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.293][5] usbmux_remote_process: read 301 bytes from remote (fd 11) requested 524288
[19:17:40.293][5] client_process in CONNECTED state, fd=10
[19:17:40.293][5] writing to client 10 from remote buffer
[19:17:40.293][5] sending 301 bytes to client
[19:17:40.296][4] New client on fd 12 (pid 42157)
[19:17:40.296][5] process_recv fd 12
[19:17:40.296][5] process_recv fd 12
[19:17:40.296][5] Client command in fd 12 len 482 ver 1 msg 8 tag 4
[19:17:40.296][5] client_command: Message is ReadBUID client fd 12
[19:17:40.296][4] New Remote fd 13
[19:17:40.296][5] remote_send_pkt fd 13 tag 4 msg 8 payload_length 466
[19:17:40.296][5] remote_process_send
[19:17:40.296][5] remote_process_send: sending 482 to usbmuxd (13)
[19:17:40.296][5] remote_process_send: returned 482
[19:17:40.296][5] remote_process_recv
[19:17:40.296][5] remote_process_recv
[19:17:40.296][5] remote_handle_command_result fd 13 len 276 ver 1 msg 8 tag 4
[19:17:40.296][5] send_pkt_raw fd 12 buffer_length 16
[19:17:40.296][5] send_pkt_raw fd 12 buffer_length 260
[19:17:40.296][5] process_send
[19:17:40.296][5] process_send: sent 276 (of 276)
[19:17:40.303][5] process_recv fd 12
[19:17:40.303][4] Client 12 connection closed
[19:17:40.303][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.303][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.303][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.304][5] client_process in CONNECTED state, fd=10
[19:17:40.304][5] read from client 10 to remote buffer
[19:17:40.304][5] client read returned 378
[19:17:40.304][5] usbmux_remote_process in CONNECTED state
[19:17:40.304][5] usbmux_remote_process: sending 378 bytes to remote (fd 11)
[19:17:40.304][5] remote_process_send
[19:17:40.304][5] remote_process_send: sending 378 to usbmuxd (11)
[19:17:40.304][5] remote_process_send: returned 378
[19:17:40.306][4] New client on fd 12 (pid 42158)
[19:17:40.306][5] usbmux_remote_process in CONNECTED state
[19:17:40.306][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.306][5] usbmux_remote_process: read 4 bytes from remote (fd 11) requested 524288
[19:17:40.306][5] client_process in CONNECTED state, fd=10
[19:17:40.306][5] writing to client 10 from remote buffer
[19:17:40.306][5] sending 4 bytes to client
[19:17:40.306][5] usbmux_remote_process in CONNECTED state
[19:17:40.306][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.306][5] usbmux_remote_process: read 327 bytes from remote (fd 11) requested 524288
[19:17:40.306][5] client_process in CONNECTED state, fd=10
[19:17:40.306][5] writing to client 10 from remote buffer
[19:17:40.306][5] sending 327 bytes to client
[19:17:40.307][5] process_recv fd 12
[19:17:40.307][5] process_recv fd 12
[19:17:40.307][5] Client command in fd 12 len 557 ver 1 msg 8 tag 5
[19:17:40.307][5] client_command: Message is ReadPairRecord client fd 12
[19:17:40.307][4] New Remote fd 13
[19:17:40.307][5] remote_send_pkt fd 13 tag 5 msg 8 payload_length 541
[19:17:40.307][5] remote_process_send
[19:17:40.307][5] remote_process_send: sending 557 to usbmuxd (13)
[19:17:40.307][5] remote_process_send: returned 557
[19:17:40.307][5] remote_process_recv
[19:17:40.307][5] remote_process_recv
[19:17:40.307][5] remote_handle_command_result fd 13 len 13154 ver 1 msg 8 tag 5
[19:17:40.307][5] send_pkt_raw fd 12 buffer_length 16
[19:17:40.307][5] send_pkt_raw fd 12 buffer_length 13138
[19:17:40.307][5] process_send
[19:17:40.307][5] process_send: sent 13154 (of 13154)
[19:17:40.311][5] process_recv fd 12
[19:17:40.311][4] Client 12 connection closed
[19:17:40.311][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.311][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.311][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.312][5] client_process in CONNECTED state, fd=8
[19:17:40.312][5] read from client 8 to remote buffer
[19:17:40.312][5] client read returned 488
[19:17:40.312][5] usbmux_remote_process in CONNECTED state
[19:17:40.312][5] usbmux_remote_process: sending 488 bytes to remote (fd 9)
[19:17:40.312][5] remote_process_send
[19:17:40.312][5] remote_process_send: sending 488 to usbmuxd (9)
[19:17:40.312][5] remote_process_send: returned 488
[19:17:40.314][5] usbmux_remote_process in CONNECTED state
[19:17:40.314][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.314][5] usbmux_remote_process: read 358 bytes from remote (fd 9) requested 524288
[19:17:40.314][5] client_process in CONNECTED state, fd=8
[19:17:40.314][5] writing to client 8 from remote buffer
[19:17:40.314][5] sending 358 bytes to client
[19:17:40.325][4] New client on fd 12 (pid 42159)
[19:17:40.326][5] process_recv fd 12
[19:17:40.326][5] process_recv fd 12
[19:17:40.326][5] Client command in fd 12 len 564 ver 1 msg 8 tag 0
[19:17:40.326][5] client_command: Message is Connect client fd 12
[19:17:40.326][5] Client 12 connection request to device 1 port 62078
[19:17:40.326][4] New Remote fd 13
[19:17:40.326][5] remote_send_pkt fd 13 tag 0 msg 8 payload_length 548
[19:17:40.326][5] remote_process_send
[19:17:40.326][5] remote_process_send: sending 564 to usbmuxd (13)
[19:17:40.326][5] remote_process_send: returned 564
[19:17:40.327][5] remote_process_recv
[19:17:40.327][5] remote_process_recv
[19:17:40.327][5] remote_handle_command_result fd 13 len 294 ver 1 msg 8 tag 0
[19:17:40.327][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.327][5] send_pkt fd 12 tag 0 msg 8 payload_length 278
[19:17:40.327][5] Remote 13 switching to CONNECTED state
[19:17:40.327][5] process_send
[19:17:40.327][5] process_send: sent 294 (of 294)
[19:17:40.327][5] Client 12 switching to CONNECTED state, remote 13
[19:17:40.327][5] usbmux_remote_process in CONNECTED state
[19:17:40.327][5] usbmux_remote_process: sending 0 bytes to remote (fd 13)
[19:17:40.327][5] remote_process_send
[19:17:40.327][5] Remote 13 OUT process but nothing to send?
[19:17:40.330][5] client_process in CONNECTED state, fd=12
[19:17:40.330][5] read from client 12 to remote buffer
[19:17:40.330][5] client read returned 333
[19:17:40.330][5] usbmux_remote_process in CONNECTED state
[19:17:40.330][5] usbmux_remote_process: sending 333 bytes to remote (fd 13)
[19:17:40.330][5] remote_process_send
[19:17:40.330][5] remote_process_send: sending 333 to usbmuxd (13)
[19:17:40.330][5] remote_process_send: returned 333
[19:17:40.331][5] usbmux_remote_process in CONNECTED state
[19:17:40.331][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:40.331][5] usbmux_remote_process: read 301 bytes from remote (fd 13) requested 524288
[19:17:40.331][5] client_process in CONNECTED state, fd=12
[19:17:40.331][5] writing to client 12 from remote buffer
[19:17:40.331][5] sending 301 bytes to client
[19:17:40.336][5] client_process in CONNECTED state, fd=12
[19:17:40.336][5] read from client 12 to remote buffer
[19:17:40.336][5] client read returned 381
[19:17:40.336][5] usbmux_remote_process in CONNECTED state
[19:17:40.336][5] usbmux_remote_process: sending 381 bytes to remote (fd 13)
[19:17:40.336][5] remote_process_send
[19:17:40.336][5] remote_process_send: sending 381 to usbmuxd (13)
[19:17:40.336][5] remote_process_send: returned 381
[19:17:40.338][5] usbmux_remote_process in CONNECTED state
[19:17:40.338][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:40.338][5] usbmux_remote_process: read 331 bytes from remote (fd 13) requested 524288
[19:17:40.338][5] client_process in CONNECTED state, fd=12
[19:17:40.338][5] writing to client 12 from remote buffer
[19:17:40.338][5] sending 331 bytes to client
[19:17:40.366][5] client_process in CONNECTED state, fd=12
[19:17:40.366][5] read from client 12 to remote buffer
[19:17:40.366][5] client read returned 0
[19:17:40.366][4] Client 12 connection closed
[19:17:40.366][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.367][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.367][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.369][5] client_process in CONNECTED state, fd=10
[19:17:40.369][5] read from client 10 to remote buffer
[19:17:40.369][5] client read returned 0
[19:17:40.369][4] Client 10 connection closed
[19:17:40.369][4] Disconnecting client 0x55fa0bbafae0 fd 10
[19:17:40.369][5] Client 0x55fa0bbafae0 notifying close on remote 0x55fa0ba8eda0
[19:17:40.369][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0ba8eda0 fd 11
[19:17:40.370][5] client_process in CONNECTED state, fd=6
[19:17:40.370][5] read from client 6 to remote buffer
[19:17:40.370][5] client read returned 318
[19:17:40.370][5] usbmux_remote_process in CONNECTED state
[19:17:40.370][5] usbmux_remote_process: sending 318 bytes to remote (fd 7)
[19:17:40.370][5] remote_process_send
[19:17:40.370][5] remote_process_send: sending 318 to usbmuxd (7)
[19:17:40.370][5] remote_process_send: returned 318
[19:17:40.371][4] New client on fd 10 (pid 42160)
[19:17:40.372][5] process_recv fd 10
[19:17:40.372][5] process_recv fd 10
[19:17:40.372][5] Client command in fd 10 len 564 ver 1 msg 8 tag 0
[19:17:40.372][5] client_command: Message is Connect client fd 10
[19:17:40.372][5] Client 10 connection request to device 1 port 62078
[19:17:40.372][4] New Remote fd 11
[19:17:40.372][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[19:17:40.372][5] remote_process_send
[19:17:40.372][5] remote_process_send: sending 564 to usbmuxd (11)
[19:17:40.372][5] remote_process_send: returned 564
[19:17:40.372][5] remote_process_recv
[19:17:40.372][5] remote_process_recv
[19:17:40.372][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[19:17:40.372][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.372][5] send_pkt fd 10 tag 0 msg 8 payload_length 278
[19:17:40.372][5] Remote 11 switching to CONNECTED state
[19:17:40.372][5] process_send
[19:17:40.372][5] process_send: sent 294 (of 294)
[19:17:40.372][5] Client 10 switching to CONNECTED state, remote 11
[19:17:40.372][5] usbmux_remote_process in CONNECTED state
[19:17:40.372][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[19:17:40.372][5] remote_process_send
[19:17:40.372][5] Remote 11 OUT process but nothing to send?
[19:17:40.378][5] client_process in CONNECTED state, fd=10
[19:17:40.378][5] read from client 10 to remote buffer
[19:17:40.378][5] client read returned 333
[19:17:40.378][5] usbmux_remote_process in CONNECTED state
[19:17:40.378][5] usbmux_remote_process: sending 333 bytes to remote (fd 11)
[19:17:40.378][5] remote_process_send
[19:17:40.378][5] remote_process_send: sending 333 to usbmuxd (11)
[19:17:40.378][5] remote_process_send: returned 333
[19:17:40.379][5] usbmux_remote_process in CONNECTED state
[19:17:40.379][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.379][5] usbmux_remote_process: read 4 bytes from remote (fd 11) requested 524288
[19:17:40.379][5] client_process in CONNECTED state, fd=10
[19:17:40.379][5] writing to client 10 from remote buffer
[19:17:40.379][5] sending 4 bytes to client
[19:17:40.379][5] usbmux_remote_process in CONNECTED state
[19:17:40.379][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.379][5] usbmux_remote_process: read 297 bytes from remote (fd 11) requested 524288
[19:17:40.379][5] client_process in CONNECTED state, fd=10
[19:17:40.379][5] writing to client 10 from remote buffer
[19:17:40.379][5] sending 297 bytes to client
[19:17:40.400][5] usbmux_remote_process in CONNECTED state
[19:17:40.400][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.400][5] usbmux_remote_process: read 1250 bytes from remote (fd 7) requested 524288
[19:17:40.400][5] client_process in CONNECTED state, fd=6
[19:17:40.400][5] writing to client 6 from remote buffer
[19:17:40.400][5] sending 1250 bytes to client
[19:17:40.428][5] client_process in CONNECTED state, fd=6
[19:17:40.428][5] read from client 6 to remote buffer
[19:17:40.428][5] client read returned 1149
[19:17:40.428][5] usbmux_remote_process in CONNECTED state
[19:17:40.428][5] usbmux_remote_process: sending 1149 bytes to remote (fd 7)
[19:17:40.428][5] remote_process_send
[19:17:40.428][5] remote_process_send: sending 1149 to usbmuxd (7)
[19:17:40.428][5] remote_process_send: returned 1149
[19:17:40.429][5] client_process in CONNECTED state, fd=10
[19:17:40.429][5] read from client 10 to remote buffer
[19:17:40.429][5] client read returned 378
[19:17:40.429][5] usbmux_remote_process in CONNECTED state
[19:17:40.429][5] usbmux_remote_process: sending 378 bytes to remote (fd 11)
[19:17:40.429][5] remote_process_send
[19:17:40.429][5] remote_process_send: sending 378 to usbmuxd (11)
[19:17:40.429][5] remote_process_send: returned 378
[19:17:40.430][5] usbmux_remote_process in CONNECTED state
[19:17:40.430][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.430][5] usbmux_remote_process: read 331 bytes from remote (fd 11) requested 524288
[19:17:40.430][5] client_process in CONNECTED state, fd=10
[19:17:40.430][5] writing to client 10 from remote buffer
[19:17:40.430][5] sending 331 bytes to client
[19:17:40.441][5] client_process in CONNECTED state, fd=10
[19:17:40.441][5] read from client 10 to remote buffer
[19:17:40.441][5] client read returned 0
[19:17:40.441][4] Client 10 connection closed
[19:17:40.441][4] Disconnecting client 0x55fa0bbafae0 fd 10
[19:17:40.441][5] Client 0x55fa0bbafae0 notifying close on remote 0x55fa0ba8eda0
[19:17:40.441][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0ba8eda0 fd 11
[19:17:40.442][5] client_process in CONNECTED state, fd=8
[19:17:40.442][5] read from client 8 to remote buffer
[19:17:40.442][5] client read returned 318
[19:17:40.442][5] usbmux_remote_process in CONNECTED state
[19:17:40.442][5] usbmux_remote_process: sending 318 bytes to remote (fd 9)
[19:17:40.442][5] remote_process_send
[19:17:40.442][5] remote_process_send: sending 318 to usbmuxd (9)
[19:17:40.442][5] remote_process_send: returned 318
[19:17:40.442][5] usbmux_remote_process in CONNECTED state
[19:17:40.442][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.442][5] usbmux_remote_process: read 51 bytes from remote (fd 7) requested 524288
[19:17:40.442][5] client_process in CONNECTED state, fd=6
[19:17:40.442][5] writing to client 6 from remote buffer
[19:17:40.442][5] sending 51 bytes to client
[19:17:40.450][5] client_process in CONNECTED state, fd=6
[19:17:40.450][5] read from client 6 to remote buffer
[19:17:40.450][5] client read returned 458
[19:17:40.450][5] usbmux_remote_process in CONNECTED state
[19:17:40.450][5] usbmux_remote_process: sending 458 bytes to remote (fd 7)
[19:17:40.450][5] remote_process_send
[19:17:40.450][5] remote_process_send: sending 458 to usbmuxd (7)
[19:17:40.450][5] remote_process_send: returned 458
[19:17:40.461][5] usbmux_remote_process in CONNECTED state
[19:17:40.461][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.461][5] usbmux_remote_process: read 1250 bytes from remote (fd 9) requested 524288
[19:17:40.461][5] client_process in CONNECTED state, fd=8
[19:17:40.461][5] writing to client 8 from remote buffer
[19:17:40.461][5] sending 1250 bytes to client
[19:17:40.461][5] usbmux_remote_process in CONNECTED state
[19:17:40.461][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.461][5] usbmux_remote_process: read 446 bytes from remote (fd 7) requested 524288
[19:17:40.461][5] client_process in CONNECTED state, fd=6
[19:17:40.461][5] writing to client 6 from remote buffer
[19:17:40.461][5] sending 446 bytes to client
[19:17:40.469][4] New client on fd 10 (pid 42161)
[19:17:40.469][5] process_recv fd 10
[19:17:40.469][5] process_recv fd 10
[19:17:40.469][5] Client command in fd 10 len 564 ver 1 msg 8 tag 0
[19:17:40.469][5] client_command: Message is Connect client fd 10
[19:17:40.469][5] Client 10 connection request to device 1 port 49218
[19:17:40.469][4] New Remote fd 11
[19:17:40.469][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[19:17:40.469][5] remote_process_send
[19:17:40.469][5] remote_process_send: sending 564 to usbmuxd (11)
[19:17:40.469][5] remote_process_send: returned 564
[19:17:40.470][5] remote_process_recv
[19:17:40.470][5] remote_process_recv
[19:17:40.470][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[19:17:40.470][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.470][5] send_pkt fd 10 tag 0 msg 8 payload_length 278
[19:17:40.470][5] Remote 11 switching to CONNECTED state
[19:17:40.470][5] process_send
[19:17:40.470][5] process_send: sent 294 (of 294)
[19:17:40.470][5] Client 10 switching to CONNECTED state, remote 11
[19:17:40.470][5] usbmux_remote_process in CONNECTED state
[19:17:40.470][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[19:17:40.470][5] remote_process_send
[19:17:40.470][5] Remote 11 OUT process but nothing to send?
[19:17:40.473][4] New client on fd 12 (pid 42162)
[19:17:40.474][5] process_recv fd 12
[19:17:40.474][5] process_recv fd 12
[19:17:40.474][5] Client command in fd 12 len 482 ver 1 msg 8 tag 14
[19:17:40.474][5] client_command: Message is ReadBUID client fd 12
[19:17:40.474][4] New Remote fd 13
[19:17:40.474][5] remote_send_pkt fd 13 tag 14 msg 8 payload_length 466
[19:17:40.474][5] remote_process_send
[19:17:40.474][5] remote_process_send: sending 482 to usbmuxd (13)
[19:17:40.474][5] remote_process_send: returned 482
[19:17:40.474][5] remote_process_recv
[19:17:40.474][5] remote_process_recv
[19:17:40.474][5] remote_handle_command_result fd 13 len 276 ver 1 msg 8 tag 14
[19:17:40.474][5] send_pkt_raw fd 12 buffer_length 16
[19:17:40.474][5] send_pkt_raw fd 12 buffer_length 260
[19:17:40.474][5] process_send
[19:17:40.474][5] process_send: sent 276 (of 276)
[19:17:40.476][5] process_recv fd 12
[19:17:40.476][4] Client 12 connection closed
[19:17:40.476][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.476][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.476][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.478][4] New client on fd 12 (pid 42163)
[19:17:40.478][5] process_recv fd 12
[19:17:40.478][5] process_recv fd 12
[19:17:40.478][5] Client command in fd 12 len 557 ver 1 msg 8 tag 15
[19:17:40.478][5] client_command: Message is ReadPairRecord client fd 12
[19:17:40.478][4] New Remote fd 13
[19:17:40.478][5] remote_send_pkt fd 13 tag 15 msg 8 payload_length 541
[19:17:40.478][5] remote_process_send
[19:17:40.478][5] remote_process_send: sending 557 to usbmuxd (13)
[19:17:40.478][5] remote_process_send: returned 557
[19:17:40.478][5] remote_process_recv
[19:17:40.478][5] remote_process_recv
[19:17:40.478][5] remote_handle_command_result fd 13 len 13154 ver 1 msg 8 tag 15
[19:17:40.478][5] send_pkt_raw fd 12 buffer_length 16
[19:17:40.478][5] send_pkt_raw fd 12 buffer_length 13138
[19:17:40.478][5] process_send
[19:17:40.478][5] process_send: sent 13154 (of 13154)
[19:17:40.495][5] process_recv fd 12
[19:17:40.495][4] Client 12 connection closed
[19:17:40.495][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.495][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.495][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.496][4] New client on fd 12 (pid 42164)
[19:17:40.496][5] process_recv fd 12
[19:17:40.496][5] process_recv fd 12
[19:17:40.496][5] Client command in fd 12 len 564 ver 1 msg 8 tag 0
[19:17:40.496][5] client_command: Message is Connect client fd 12
[19:17:40.496][5] Client 12 connection request to device 1 port 62078
[19:17:40.497][4] New Remote fd 13
[19:17:40.497][5] remote_send_pkt fd 13 tag 0 msg 8 payload_length 548
[19:17:40.497][5] remote_process_send
[19:17:40.497][5] remote_process_send: sending 564 to usbmuxd (13)
[19:17:40.497][5] remote_process_send: returned 564
[19:17:40.498][5] remote_process_recv
[19:17:40.498][5] remote_process_recv
[19:17:40.498][5] remote_handle_command_result fd 13 len 294 ver 1 msg 8 tag 0
[19:17:40.498][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.498][5] send_pkt fd 12 tag 0 msg 8 payload_length 278
[19:17:40.498][5] Remote 13 switching to CONNECTED state
[19:17:40.498][5] process_send
[19:17:40.498][5] process_send: sent 294 (of 294)
[19:17:40.498][5] Client 12 switching to CONNECTED state, remote 13
[19:17:40.498][5] usbmux_remote_process in CONNECTED state
[19:17:40.498][5] usbmux_remote_process: sending 0 bytes to remote (fd 13)
[19:17:40.498][5] remote_process_send
[19:17:40.498][5] Remote 13 OUT process but nothing to send?
[19:17:40.500][5] client_process in CONNECTED state, fd=12
[19:17:40.500][5] read from client 12 to remote buffer
[19:17:40.500][5] client read returned 333
[19:17:40.500][5] usbmux_remote_process in CONNECTED state
[19:17:40.500][5] usbmux_remote_process: sending 333 bytes to remote (fd 13)
[19:17:40.500][5] remote_process_send
[19:17:40.500][5] remote_process_send: sending 333 to usbmuxd (13)
[19:17:40.500][5] remote_process_send: returned 333
[19:17:40.501][5] usbmux_remote_process in CONNECTED state
[19:17:40.501][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:40.501][5] usbmux_remote_process: read 301 bytes from remote (fd 13) requested 524288
[19:17:40.501][5] client_process in CONNECTED state, fd=12
[19:17:40.501][5] writing to client 12 from remote buffer
[19:17:40.501][5] sending 301 bytes to client
[19:17:40.503][5] client_process in CONNECTED state, fd=12
[19:17:40.503][5] read from client 12 to remote buffer
[19:17:40.503][5] client read returned 381
[19:17:40.503][5] usbmux_remote_process in CONNECTED state
[19:17:40.503][5] usbmux_remote_process: sending 381 bytes to remote (fd 13)
[19:17:40.503][5] remote_process_send
[19:17:40.503][5] remote_process_send: sending 381 to usbmuxd (13)
[19:17:40.503][5] remote_process_send: returned 381
[19:17:40.503][5] usbmux_remote_process in CONNECTED state
[19:17:40.503][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:40.503][5] usbmux_remote_process: read 331 bytes from remote (fd 13) requested 524288
[19:17:40.503][5] client_process in CONNECTED state, fd=12
[19:17:40.503][5] writing to client 12 from remote buffer
[19:17:40.503][5] sending 331 bytes to client
[19:17:40.507][5] client_process in CONNECTED state, fd=12
[19:17:40.507][5] read from client 12 to remote buffer
[19:17:40.507][5] client read returned 0
[19:17:40.507][4] Client 12 connection closed
[19:17:40.507][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.507][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.507][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.509][4] New client on fd 12 (pid 42165)
[19:17:40.509][5] process_recv fd 12
[19:17:40.509][5] process_recv fd 12
[19:17:40.509][5] Client command in fd 12 len 564 ver 1 msg 8 tag 0
[19:17:40.509][5] client_command: Message is Connect client fd 12
[19:17:40.509][5] Client 12 connection request to device 1 port 62078
[19:17:40.509][4] New Remote fd 13
[19:17:40.509][5] remote_send_pkt fd 13 tag 0 msg 8 payload_length 548
[19:17:40.509][5] remote_process_send
[19:17:40.509][5] remote_process_send: sending 564 to usbmuxd (13)
[19:17:40.509][5] remote_process_send: returned 564
[19:17:40.510][5] remote_process_recv
[19:17:40.510][5] remote_process_recv
[19:17:40.510][5] remote_handle_command_result fd 13 len 294 ver 1 msg 8 tag 0
[19:17:40.510][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.510][5] send_pkt fd 12 tag 0 msg 8 payload_length 278
[19:17:40.510][5] Remote 13 switching to CONNECTED state
[19:17:40.510][5] process_send
[19:17:40.510][5] process_send: sent 294 (of 294)
[19:17:40.510][5] Client 12 switching to CONNECTED state, remote 13
[19:17:40.510][5] usbmux_remote_process in CONNECTED state
[19:17:40.510][5] usbmux_remote_process: sending 0 bytes to remote (fd 13)
[19:17:40.510][5] remote_process_send
[19:17:40.510][5] Remote 13 OUT process but nothing to send?
[19:17:40.512][5] client_process in CONNECTED state, fd=12
[19:17:40.512][5] read from client 12 to remote buffer
[19:17:40.512][5] client read returned 333
[19:17:40.512][5] usbmux_remote_process in CONNECTED state
[19:17:40.512][5] usbmux_remote_process: sending 333 bytes to remote (fd 13)
[19:17:40.512][5] remote_process_send
[19:17:40.512][5] remote_process_send: sending 333 to usbmuxd (13)
[19:17:40.512][5] remote_process_send: returned 333
[19:17:40.513][5] usbmux_remote_process in CONNECTED state
[19:17:40.513][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:40.513][5] usbmux_remote_process: read 301 bytes from remote (fd 13) requested 524288
[19:17:40.513][5] client_process in CONNECTED state, fd=12
[19:17:40.513][5] writing to client 12 from remote buffer
[19:17:40.513][5] sending 301 bytes to client
[19:17:40.522][5] client_process in CONNECTED state, fd=12
[19:17:40.522][5] read from client 12 to remote buffer
[19:17:40.522][5] client read returned 378
[19:17:40.522][5] usbmux_remote_process in CONNECTED state
[19:17:40.522][5] usbmux_remote_process: sending 378 bytes to remote (fd 13)
[19:17:40.522][5] remote_process_send
[19:17:40.522][5] remote_process_send: sending 378 to usbmuxd (13)
[19:17:40.522][5] remote_process_send: returned 378
[19:17:40.524][5] usbmux_remote_process in CONNECTED state
[19:17:40.524][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:40.524][5] usbmux_remote_process: read 331 bytes from remote (fd 13) requested 524288
[19:17:40.524][5] client_process in CONNECTED state, fd=12
[19:17:40.524][5] writing to client 12 from remote buffer
[19:17:40.524][5] sending 331 bytes to client
[19:17:40.525][5] client_process in CONNECTED state, fd=12
[19:17:40.525][5] read from client 12 to remote buffer
[19:17:40.525][5] client read returned 0
[19:17:40.525][4] Client 12 connection closed
[19:17:40.525][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.525][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.525][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.526][5] client_process in CONNECTED state, fd=10
[19:17:40.526][5] read from client 10 to remote buffer
[19:17:40.526][5] client read returned 318
[19:17:40.526][5] usbmux_remote_process in CONNECTED state
[19:17:40.526][5] usbmux_remote_process: sending 318 bytes to remote (fd 11)
[19:17:40.526][5] remote_process_send
[19:17:40.526][5] remote_process_send: sending 318 to usbmuxd (11)
[19:17:40.526][5] remote_process_send: returned 318
[19:17:40.559][5] usbmux_remote_process in CONNECTED state
[19:17:40.559][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.559][5] usbmux_remote_process: read 1250 bytes from remote (fd 11) requested 524288
[19:17:40.559][5] client_process in CONNECTED state, fd=10
[19:17:40.559][5] writing to client 10 from remote buffer
[19:17:40.559][5] sending 1250 bytes to client
[19:17:40.599][5] client_process in CONNECTED state, fd=8
[19:17:40.599][5] read from client 8 to remote buffer
[19:17:40.599][5] client read returned 1149
[19:17:40.599][5] usbmux_remote_process in CONNECTED state
[19:17:40.599][5] usbmux_remote_process: sending 1149 bytes to remote (fd 9)
[19:17:40.599][5] remote_process_send
[19:17:40.599][5] remote_process_send: sending 1149 to usbmuxd (9)
[19:17:40.599][5] remote_process_send: returned 1149
[19:17:40.600][5] client_process in CONNECTED state, fd=10
[19:17:40.600][5] read from client 10 to remote buffer
[19:17:40.600][5] client read returned 1136
[19:17:40.600][5] usbmux_remote_process in CONNECTED state
[19:17:40.600][5] usbmux_remote_process: sending 1136 bytes to remote (fd 11)
[19:17:40.600][5] remote_process_send
[19:17:40.600][5] remote_process_send: sending 1136 to usbmuxd (11)
[19:17:40.600][5] remote_process_send: returned 1136
[19:17:40.618][5] usbmux_remote_process in CONNECTED state
[19:17:40.618][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.618][5] usbmux_remote_process: read 51 bytes from remote (fd 9) requested 524288
[19:17:40.618][5] client_process in CONNECTED state, fd=8
[19:17:40.618][5] writing to client 8 from remote buffer
[19:17:40.618][5] sending 51 bytes to client
[19:17:40.619][5] usbmux_remote_process in CONNECTED state
[19:17:40.619][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[19:17:40.619][5] usbmux_remote_process: read 51 bytes from remote (fd 11) requested 524288
[19:17:40.619][5] client_process in CONNECTED state, fd=10
[19:17:40.619][5] writing to client 10 from remote buffer
[19:17:40.619][5] sending 51 bytes to client
[19:17:40.626][5] client_process in CONNECTED state, fd=6
[19:17:40.626][5] read from client 6 to remote buffer
[19:17:40.626][5] client read returned 470
[19:17:40.626][5] usbmux_remote_process in CONNECTED state
[19:17:40.626][5] usbmux_remote_process: sending 470 bytes to remote (fd 7)
[19:17:40.626][5] remote_process_send
[19:17:40.626][5] remote_process_send: sending 470 to usbmuxd (7)
[19:17:40.626][5] remote_process_send: returned 470
[19:17:40.626][5] client_process in CONNECTED state, fd=8
[19:17:40.626][5] read from client 8 to remote buffer
[19:17:40.626][5] client read returned 439
[19:17:40.626][5] usbmux_remote_process in CONNECTED state
[19:17:40.626][5] usbmux_remote_process: sending 439 bytes to remote (fd 9)
[19:17:40.626][5] remote_process_send
[19:17:40.626][5] remote_process_send: sending 439 to usbmuxd (9)
[19:17:40.626][5] remote_process_send: returned 439
[19:17:40.627][5] usbmux_remote_process in CONNECTED state
[19:17:40.627][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.627][5] usbmux_remote_process: read 300 bytes from remote (fd 7) requested 524288
[19:17:40.627][5] client_process in CONNECTED state, fd=6
[19:17:40.627][5] writing to client 6 from remote buffer
[19:17:40.627][5] sending 300 bytes to client
[19:17:40.627][5] usbmux_remote_process in CONNECTED state
[19:17:40.627][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.627][5] usbmux_remote_process: read 389 bytes from remote (fd 9) requested 524288
[19:17:40.627][5] client_process in CONNECTED state, fd=8
[19:17:40.627][5] writing to client 8 from remote buffer
[19:17:40.627][5] sending 389 bytes to client
[19:17:40.629][5] client_process in CONNECTED state, fd=6
[19:17:40.629][5] read from client 6 to remote buffer
[19:17:40.629][5] client read returned 31
[19:17:40.629][5] usbmux_remote_process in CONNECTED state
[19:17:40.629][5] usbmux_remote_process: sending 31 bytes to remote (fd 7)
[19:17:40.629][5] remote_process_send
[19:17:40.629][5] remote_process_send: sending 31 to usbmuxd (7)
[19:17:40.629][5] remote_process_send: returned 31
[19:17:40.630][5] usbmux_remote_process in CONNECTED state
[19:17:40.630][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.630][5] usbmux_remote_process: read 31 bytes from remote (fd 7) requested 524288
[19:17:40.630][5] client_process in CONNECTED state, fd=6
[19:17:40.630][5] writing to client 6 from remote buffer
[19:17:40.630][5] sending 31 bytes to client
[19:17:40.631][5] client_process in CONNECTED state, fd=8
[19:17:40.631][5] read from client 8 to remote buffer
[19:17:40.631][5] client read returned 511
[19:17:40.631][5] usbmux_remote_process in CONNECTED state
[19:17:40.631][5] usbmux_remote_process: sending 511 bytes to remote (fd 9)
[19:17:40.631][5] remote_process_send
[19:17:40.631][5] remote_process_send: sending 511 to usbmuxd (9)
[19:17:40.631][5] remote_process_send: returned 511
[19:17:40.632][5] usbmux_remote_process in CONNECTED state
[19:17:40.632][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.632][5] usbmux_remote_process: read 445 bytes from remote (fd 9) requested 524288
[19:17:40.632][5] client_process in CONNECTED state, fd=8
[19:17:40.632][5] writing to client 8 from remote buffer
[19:17:40.632][5] sending 445 bytes to client
[19:17:40.634][5] client_process in CONNECTED state, fd=6
[19:17:40.634][5] read from client 6 to remote buffer
[19:17:40.634][5] client read returned 0
[19:17:40.634][4] Client 6 connection closed
[19:17:40.634][4] Disconnecting client 0x55fa0ba5e7b0 fd 6
[19:17:40.634][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:40.634][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 7
[19:17:40.641][5] client_process in CONNECTED state, fd=10
[19:17:40.641][5] read from client 10 to remote buffer
[19:17:40.641][5] client read returned 143
[19:17:40.641][5] usbmux_remote_process in CONNECTED state
[19:17:40.641][5] usbmux_remote_process: sending 143 bytes to remote (fd 11)
[19:17:40.641][5] remote_process_send
[19:17:40.641][5] remote_process_send: sending 143 to usbmuxd (11)
[19:17:40.641][5] remote_process_send: returned 143
[19:17:40.642][4] New client on fd 6 (pid 42166)
[19:17:40.643][5] process_recv fd 6
[19:17:40.643][5] process_recv fd 6
[19:17:40.643][5] Client command in fd 6 len 564 ver 1 msg 8 tag 0
[19:17:40.643][5] client_command: Message is Connect client fd 6
[19:17:40.643][5] Client 6 connection request to device 1 port 62078
[19:17:40.643][4] New Remote fd 7
[19:17:40.643][5] remote_send_pkt fd 7 tag 0 msg 8 payload_length 548
[19:17:40.643][5] remote_process_send
[19:17:40.643][5] remote_process_send: sending 564 to usbmuxd (7)
[19:17:40.643][5] remote_process_send: returned 564
[19:17:40.643][5] client_process in CONNECTED state, fd=8
[19:17:40.643][5] read from client 8 to remote buffer
[19:17:40.643][5] client read returned 470
[19:17:40.643][5] usbmux_remote_process in CONNECTED state
[19:17:40.643][5] usbmux_remote_process: sending 470 bytes to remote (fd 9)
[19:17:40.643][5] remote_process_send
[19:17:40.643][5] remote_process_send: sending 470 to usbmuxd (9)
[19:17:40.643][5] remote_process_send: returned 470
[19:17:40.643][5] remote_process_recv
[19:17:40.643][5] remote_process_recv
[19:17:40.643][5] remote_handle_command_result fd 7 len 294 ver 1 msg 8 tag 0
[19:17:40.643][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.643][5] send_pkt fd 6 tag 0 msg 8 payload_length 278
[19:17:40.643][5] Remote 7 switching to CONNECTED state
[19:17:40.643][5] process_send
[19:17:40.643][5] process_send: sent 294 (of 294)
[19:17:40.643][5] Client 6 switching to CONNECTED state, remote 7
[19:17:40.643][5] usbmux_remote_process in CONNECTED state
[19:17:40.643][5] usbmux_remote_process: sending 0 bytes to remote (fd 7)
[19:17:40.643][5] remote_process_send
[19:17:40.643][5] Remote 7 OUT process but nothing to send?
[19:17:40.644][5] usbmux_remote_process in CONNECTED state
[19:17:40.644][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.644][5] usbmux_remote_process: read 33 bytes from remote (fd 9) requested 524288
[19:17:40.644][5] client_process in CONNECTED state, fd=8
[19:17:40.644][5] writing to client 8 from remote buffer
[19:17:40.644][5] sending 33 bytes to client
[19:17:40.644][5] usbmux_remote_process in CONNECTED state
[19:17:40.644][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.644][5] usbmux_remote_process: read 267 bytes from remote (fd 9) requested 524288
[19:17:40.644][5] client_process in CONNECTED state, fd=8
[19:17:40.644][5] writing to client 8 from remote buffer
[19:17:40.644][5] sending 267 bytes to client
[19:17:40.657][5] client_process in CONNECTED state, fd=6
[19:17:40.657][5] read from client 6 to remote buffer
[19:17:40.657][5] client read returned 333
[19:17:40.657][5] usbmux_remote_process in CONNECTED state
[19:17:40.657][5] usbmux_remote_process: sending 333 bytes to remote (fd 7)
[19:17:40.657][5] remote_process_send
[19:17:40.657][5] remote_process_send: sending 333 to usbmuxd (7)
[19:17:40.658][5] remote_process_send: returned 333
[19:17:40.659][5] usbmux_remote_process in CONNECTED state
[19:17:40.659][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.659][5] usbmux_remote_process: read 301 bytes from remote (fd 7) requested 524288
[19:17:40.659][5] client_process in CONNECTED state, fd=6
[19:17:40.659][5] writing to client 6 from remote buffer
[19:17:40.659][5] sending 301 bytes to client
[19:17:40.661][5] client_process in CONNECTED state, fd=6
[19:17:40.661][5] read from client 6 to remote buffer
[19:17:40.661][5] client read returned 381
[19:17:40.661][5] usbmux_remote_process in CONNECTED state
[19:17:40.661][5] usbmux_remote_process: sending 381 bytes to remote (fd 7)
[19:17:40.661][5] remote_process_send
[19:17:40.661][5] remote_process_send: sending 381 to usbmuxd (7)
[19:17:40.661][5] remote_process_send: returned 381
[19:17:40.662][5] usbmux_remote_process in CONNECTED state
[19:17:40.662][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.662][5] usbmux_remote_process: read 331 bytes from remote (fd 7) requested 524288
[19:17:40.662][5] client_process in CONNECTED state, fd=6
[19:17:40.662][5] writing to client 6 from remote buffer
[19:17:40.662][5] sending 331 bytes to client
[19:17:40.666][5] client_process in CONNECTED state, fd=6
[19:17:40.666][5] read from client 6 to remote buffer
[19:17:40.666][5] client read returned 378
[19:17:40.666][5] usbmux_remote_process in CONNECTED state
[19:17:40.666][5] usbmux_remote_process: sending 378 bytes to remote (fd 7)
[19:17:40.666][5] remote_process_send
[19:17:40.666][5] remote_process_send: sending 378 to usbmuxd (7)
[19:17:40.666][5] remote_process_send: returned 378
[19:17:40.667][5] usbmux_remote_process in CONNECTED state
[19:17:40.667][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.667][5] usbmux_remote_process: read 332 bytes from remote (fd 7) requested 524288
[19:17:40.667][5] client_process in CONNECTED state, fd=6
[19:17:40.667][5] writing to client 6 from remote buffer
[19:17:40.667][5] sending 332 bytes to client
[19:17:40.694][5] client_process in CONNECTED state, fd=6
[19:17:40.694][5] read from client 6 to remote buffer
[19:17:40.694][5] client read returned 0
[19:17:40.694][4] Client 6 connection closed
[19:17:40.694][4] Disconnecting client 0x55fa0ba5e7b0 fd 6
[19:17:40.694][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:40.694][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 7
[19:17:40.696][5] client_process in CONNECTED state, fd=8
[19:17:40.696][5] read from client 8 to remote buffer
[19:17:40.696][5] client read returned 31
[19:17:40.696][5] usbmux_remote_process in CONNECTED state
[19:17:40.696][5] usbmux_remote_process: sending 31 bytes to remote (fd 9)
[19:17:40.696][5] remote_process_send
[19:17:40.696][5] remote_process_send: sending 31 to usbmuxd (9)
[19:17:40.696][5] remote_process_send: returned 31
[19:17:40.697][5] usbmux_remote_process in CONNECTED state
[19:17:40.697][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.697][5] usbmux_remote_process: read 31 bytes from remote (fd 9) requested 524288
[19:17:40.697][5] client_process in CONNECTED state, fd=8
[19:17:40.697][5] writing to client 8 from remote buffer
[19:17:40.697][5] sending 31 bytes to client
[19:17:40.702][5] client_process in CONNECTED state, fd=8
[19:17:40.702][5] read from client 8 to remote buffer
[19:17:40.702][5] client read returned 0
[19:17:40.702][4] Client 8 connection closed
[19:17:40.702][4] Disconnecting client 0x55fa0bbaf680 fd 8
[19:17:40.702][5] Client 0x55fa0bbaf680 notifying close on remote 0x55fa0bc4feb0
[19:17:40.702][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bc4feb0 fd 9
[19:17:40.703][4] New client on fd 6 (pid 42167)
[19:17:40.704][5] process_recv fd 6
[19:17:40.704][5] process_recv fd 6
[19:17:40.704][5] Client command in fd 6 len 564 ver 1 msg 8 tag 0
[19:17:40.704][5] client_command: Message is Connect client fd 6
[19:17:40.704][5] Client 6 connection request to device 1 port 62078
[19:17:40.704][4] New Remote fd 7
[19:17:40.704][5] remote_send_pkt fd 7 tag 0 msg 8 payload_length 548
[19:17:40.704][5] remote_process_send
[19:17:40.704][5] remote_process_send: sending 564 to usbmuxd (7)
[19:17:40.704][5] remote_process_send: returned 564
[19:17:40.705][5] remote_process_recv
[19:17:40.705][5] remote_process_recv
[19:17:40.705][5] remote_handle_command_result fd 7 len 294 ver 1 msg 8 tag 0
[19:17:40.705][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.705][5] send_pkt fd 6 tag 0 msg 8 payload_length 278
[19:17:40.705][5] Remote 7 switching to CONNECTED state
[19:17:40.705][5] process_send
[19:17:40.705][5] process_send: sent 294 (of 294)
[19:17:40.705][5] Client 6 switching to CONNECTED state, remote 7
[19:17:40.705][5] usbmux_remote_process in CONNECTED state
[19:17:40.705][5] usbmux_remote_process: sending 0 bytes to remote (fd 7)
[19:17:40.705][5] remote_process_send
[19:17:40.705][5] Remote 7 OUT process but nothing to send?
[19:17:40.707][5] client_process in CONNECTED state, fd=6
[19:17:40.707][5] read from client 6 to remote buffer
[19:17:40.707][5] client read returned 333
[19:17:40.707][5] usbmux_remote_process in CONNECTED state
[19:17:40.707][5] usbmux_remote_process: sending 333 bytes to remote (fd 7)
[19:17:40.707][5] remote_process_send
[19:17:40.707][5] remote_process_send: sending 333 to usbmuxd (7)
[19:17:40.707][5] remote_process_send: returned 333
[19:17:40.708][5] usbmux_remote_process in CONNECTED state
[19:17:40.708][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.708][5] usbmux_remote_process: read 301 bytes from remote (fd 7) requested 524288
[19:17:40.708][5] client_process in CONNECTED state, fd=6
[19:17:40.708][5] writing to client 6 from remote buffer
[19:17:40.708][5] sending 301 bytes to client
[19:17:40.711][4] New client on fd 8 (pid 42168)
[19:17:40.712][5] process_recv fd 8
[19:17:40.712][5] process_recv fd 8
[19:17:40.712][5] Client command in fd 8 len 482 ver 1 msg 8 tag 9
[19:17:40.712][5] client_command: Message is ReadBUID client fd 8
[19:17:40.712][4] New Remote fd 9
[19:17:40.712][5] remote_send_pkt fd 9 tag 9 msg 8 payload_length 466
[19:17:40.712][5] remote_process_send
[19:17:40.712][5] remote_process_send: sending 482 to usbmuxd (9)
[19:17:40.712][5] remote_process_send: returned 482
[19:17:40.712][5] remote_process_recv
[19:17:40.712][5] remote_process_recv
[19:17:40.712][5] remote_handle_command_result fd 9 len 276 ver 1 msg 8 tag 9
[19:17:40.712][5] send_pkt_raw fd 8 buffer_length 16
[19:17:40.712][5] send_pkt_raw fd 8 buffer_length 260
[19:17:40.712][5] process_send
[19:17:40.712][5] process_send: sent 276 (of 276)
[19:17:40.722][5] process_recv fd 8
[19:17:40.722][4] Client 8 connection closed
[19:17:40.722][4] Disconnecting client 0x55fa0ba5e7b0 fd 8
[19:17:40.722][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:40.722][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 9
[19:17:40.725][4] New client on fd 8 (pid 42169)
[19:17:40.725][5] process_recv fd 8
[19:17:40.725][5] process_recv fd 8
[19:17:40.725][5] Client command in fd 8 len 557 ver 1 msg 8 tag 10
[19:17:40.725][5] client_command: Message is ReadPairRecord client fd 8
[19:17:40.725][4] New Remote fd 9
[19:17:40.726][5] remote_send_pkt fd 9 tag 10 msg 8 payload_length 541
[19:17:40.726][5] remote_process_send
[19:17:40.726][5] remote_process_send: sending 557 to usbmuxd (9)
[19:17:40.726][5] remote_process_send: returned 557
[19:17:40.726][5] remote_process_recv
[19:17:40.726][5] remote_process_recv
[19:17:40.726][5] remote_handle_command_result fd 9 len 13154 ver 1 msg 8 tag 10
[19:17:40.726][5] send_pkt_raw fd 8 buffer_length 16
[19:17:40.726][5] send_pkt_raw fd 8 buffer_length 13138
[19:17:40.726][5] process_send
[19:17:40.726][5] process_send: sent 13154 (of 13154)
[19:17:40.734][5] process_recv fd 8
[19:17:40.734][4] Client 8 connection closed
[19:17:40.734][4] Disconnecting client 0x55fa0ba5e7b0 fd 8
[19:17:40.734][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:40.734][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 9
[19:17:40.734][5] client_process in CONNECTED state, fd=6
[19:17:40.734][5] read from client 6 to remote buffer
[19:17:40.734][5] client read returned 488
[19:17:40.734][5] usbmux_remote_process in CONNECTED state
[19:17:40.734][5] usbmux_remote_process: sending 488 bytes to remote (fd 7)
[19:17:40.734][5] remote_process_send
[19:17:40.734][5] remote_process_send: sending 488 to usbmuxd (7)
[19:17:40.734][5] remote_process_send: returned 488
[19:17:40.737][5] usbmux_remote_process in CONNECTED state
[19:17:40.737][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.737][5] usbmux_remote_process: read 358 bytes from remote (fd 7) requested 524288
[19:17:40.737][5] client_process in CONNECTED state, fd=6
[19:17:40.737][5] writing to client 6 from remote buffer
[19:17:40.737][5] sending 358 bytes to client
[19:17:40.740][4] New client on fd 8 (pid 42170)
[19:17:40.740][5] process_recv fd 8
[19:17:40.740][5] process_recv fd 8
[19:17:40.740][5] Client command in fd 8 len 564 ver 1 msg 8 tag 0
[19:17:40.740][5] client_command: Message is Connect client fd 8
[19:17:40.740][5] Client 8 connection request to device 1 port 62078
[19:17:40.740][4] New Remote fd 9
[19:17:40.740][5] remote_send_pkt fd 9 tag 0 msg 8 payload_length 548
[19:17:40.740][5] remote_process_send
[19:17:40.740][5] remote_process_send: sending 564 to usbmuxd (9)
[19:17:40.740][5] remote_process_send: returned 564
[19:17:40.741][5] remote_process_recv
[19:17:40.741][5] remote_process_recv
[19:17:40.741][5] remote_handle_command_result fd 9 len 294 ver 1 msg 8 tag 0
[19:17:40.741][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.741][5] send_pkt fd 8 tag 0 msg 8 payload_length 278
[19:17:40.741][5] Remote 9 switching to CONNECTED state
[19:17:40.741][5] process_send
[19:17:40.741][5] process_send: sent 294 (of 294)
[19:17:40.741][5] Client 8 switching to CONNECTED state, remote 9
[19:17:40.741][5] usbmux_remote_process in CONNECTED state
[19:17:40.741][5] usbmux_remote_process: sending 0 bytes to remote (fd 9)
[19:17:40.741][5] remote_process_send
[19:17:40.741][5] Remote 9 OUT process but nothing to send?
[19:17:40.743][5] client_process in CONNECTED state, fd=8
[19:17:40.743][5] read from client 8 to remote buffer
[19:17:40.743][5] client read returned 333
[19:17:40.743][5] usbmux_remote_process in CONNECTED state
[19:17:40.743][5] usbmux_remote_process: sending 333 bytes to remote (fd 9)
[19:17:40.743][5] remote_process_send
[19:17:40.743][5] remote_process_send: sending 333 to usbmuxd (9)
[19:17:40.743][5] remote_process_send: returned 333
[19:17:40.744][5] usbmux_remote_process in CONNECTED state
[19:17:40.744][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.744][5] usbmux_remote_process: read 301 bytes from remote (fd 9) requested 524288
[19:17:40.744][5] client_process in CONNECTED state, fd=8
[19:17:40.744][5] writing to client 8 from remote buffer
[19:17:40.744][5] sending 301 bytes to client
[19:17:40.746][5] client_process in CONNECTED state, fd=8
[19:17:40.746][5] read from client 8 to remote buffer
[19:17:40.746][5] client read returned 381
[19:17:40.746][5] usbmux_remote_process in CONNECTED state
[19:17:40.746][5] usbmux_remote_process: sending 381 bytes to remote (fd 9)
[19:17:40.746][5] remote_process_send
[19:17:40.746][5] remote_process_send: sending 381 to usbmuxd (9)
[19:17:40.746][5] remote_process_send: returned 381
[19:17:40.747][5] usbmux_remote_process in CONNECTED state
[19:17:40.747][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.747][5] usbmux_remote_process: read 4 bytes from remote (fd 9) requested 524288
[19:17:40.747][5] client_process in CONNECTED state, fd=8
[19:17:40.747][5] writing to client 8 from remote buffer
[19:17:40.747][5] sending 4 bytes to client
[19:17:40.747][5] usbmux_remote_process in CONNECTED state
[19:17:40.747][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.747][5] usbmux_remote_process: read 327 bytes from remote (fd 9) requested 524288
[19:17:40.747][5] client_process in CONNECTED state, fd=8
[19:17:40.747][5] writing to client 8 from remote buffer
[19:17:40.747][5] sending 327 bytes to client
[19:17:40.792][5] client_process in CONNECTED state, fd=8
[19:17:40.792][5] read from client 8 to remote buffer
[19:17:40.792][5] client read returned 0
[19:17:40.792][4] Client 8 connection closed
[19:17:40.792][4] Disconnecting client 0x55fa0ba5e7b0 fd 8
[19:17:40.792][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:40.792][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 9
[19:17:40.794][4] New client on fd 8 (pid 42171)
[19:17:40.800][5] process_recv fd 8
[19:17:40.800][5] process_recv fd 8
[19:17:40.800][5] Client command in fd 8 len 564 ver 1 msg 8 tag 0
[19:17:40.800][5] client_command: Message is Connect client fd 8
[19:17:40.800][5] Client 8 connection request to device 1 port 62078
[19:17:40.800][4] New Remote fd 9
[19:17:40.800][5] remote_send_pkt fd 9 tag 0 msg 8 payload_length 548
[19:17:40.800][5] remote_process_send
[19:17:40.800][5] remote_process_send: sending 564 to usbmuxd (9)
[19:17:40.800][5] remote_process_send: returned 564
[19:17:40.801][5] remote_process_recv
[19:17:40.801][5] remote_process_recv
[19:17:40.801][5] remote_handle_command_result fd 9 len 294 ver 1 msg 8 tag 0
[19:17:40.801][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.801][5] send_pkt fd 8 tag 0 msg 8 payload_length 278
[19:17:40.801][5] Remote 9 switching to CONNECTED state
[19:17:40.801][5] process_send
[19:17:40.801][5] process_send: sent 294 (of 294)
[19:17:40.801][5] Client 8 switching to CONNECTED state, remote 9
[19:17:40.801][5] usbmux_remote_process in CONNECTED state
[19:17:40.801][5] usbmux_remote_process: sending 0 bytes to remote (fd 9)
[19:17:40.801][5] remote_process_send
[19:17:40.801][5] Remote 9 OUT process but nothing to send?
[19:17:40.805][5] client_process in CONNECTED state, fd=8
[19:17:40.805][5] read from client 8 to remote buffer
[19:17:40.805][5] client read returned 333
[19:17:40.805][5] usbmux_remote_process in CONNECTED state
[19:17:40.805][5] usbmux_remote_process: sending 333 bytes to remote (fd 9)
[19:17:40.805][5] remote_process_send
[19:17:40.805][5] remote_process_send: sending 333 to usbmuxd (9)
[19:17:40.805][5] remote_process_send: returned 333
[19:17:40.806][5] usbmux_remote_process in CONNECTED state
[19:17:40.806][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.806][5] usbmux_remote_process: read 4 bytes from remote (fd 9) requested 524288
[19:17:40.806][5] client_process in CONNECTED state, fd=8
[19:17:40.806][5] writing to client 8 from remote buffer
[19:17:40.806][5] sending 4 bytes to client
[19:17:40.806][5] usbmux_remote_process in CONNECTED state
[19:17:40.806][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.806][5] usbmux_remote_process: read 297 bytes from remote (fd 9) requested 524288
[19:17:40.806][5] client_process in CONNECTED state, fd=8
[19:17:40.806][5] writing to client 8 from remote buffer
[19:17:40.806][5] sending 297 bytes to client
[19:17:40.856][5] client_process in CONNECTED state, fd=8
[19:17:40.856][5] read from client 8 to remote buffer
[19:17:40.856][5] client read returned 378
[19:17:40.856][5] usbmux_remote_process in CONNECTED state
[19:17:40.856][5] usbmux_remote_process: sending 378 bytes to remote (fd 9)
[19:17:40.856][5] remote_process_send
[19:17:40.856][5] remote_process_send: sending 378 to usbmuxd (9)
[19:17:40.856][5] remote_process_send: returned 378
[19:17:40.858][5] usbmux_remote_process in CONNECTED state
[19:17:40.858][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:40.858][5] usbmux_remote_process: read 331 bytes from remote (fd 9) requested 524288
[19:17:40.858][5] client_process in CONNECTED state, fd=8
[19:17:40.858][5] writing to client 8 from remote buffer
[19:17:40.858][5] sending 331 bytes to client
[19:17:40.865][5] client_process in CONNECTED state, fd=8
[19:17:40.865][5] read from client 8 to remote buffer
[19:17:40.865][5] client read returned 0
[19:17:40.865][4] Client 8 connection closed
[19:17:40.865][4] Disconnecting client 0x55fa0ba5e7b0 fd 8
[19:17:40.865][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:40.865][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 9
[19:17:40.866][5] client_process in CONNECTED state, fd=6
[19:17:40.866][5] read from client 6 to remote buffer
[19:17:40.866][5] client read returned 318
[19:17:40.866][5] usbmux_remote_process in CONNECTED state
[19:17:40.866][5] usbmux_remote_process: sending 318 bytes to remote (fd 7)
[19:17:40.866][5] remote_process_send
[19:17:40.866][5] remote_process_send: sending 318 to usbmuxd (7)
[19:17:40.866][5] remote_process_send: returned 318
[19:17:40.900][5] usbmux_remote_process in CONNECTED state
[19:17:40.900][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.900][5] usbmux_remote_process: read 1250 bytes from remote (fd 7) requested 524288
[19:17:40.900][5] client_process in CONNECTED state, fd=6
[19:17:40.900][5] writing to client 6 from remote buffer
[19:17:40.900][5] sending 1250 bytes to client
[19:17:40.929][5] client_process in CONNECTED state, fd=6
[19:17:40.929][5] read from client 6 to remote buffer
[19:17:40.929][5] client read returned 1149
[19:17:40.929][5] usbmux_remote_process in CONNECTED state
[19:17:40.929][5] usbmux_remote_process: sending 1149 bytes to remote (fd 7)
[19:17:40.929][5] remote_process_send
[19:17:40.929][5] remote_process_send: sending 1149 to usbmuxd (7)
[19:17:40.929][5] remote_process_send: returned 1149
[19:17:40.945][5] usbmux_remote_process in CONNECTED state
[19:17:40.945][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.945][5] usbmux_remote_process: read 51 bytes from remote (fd 7) requested 524288
[19:17:40.945][5] client_process in CONNECTED state, fd=6
[19:17:40.945][5] writing to client 6 from remote buffer
[19:17:40.945][5] sending 51 bytes to client
[19:17:40.958][5] client_process in CONNECTED state, fd=6
[19:17:40.958][5] read from client 6 to remote buffer
[19:17:40.958][5] client read returned 458
[19:17:40.958][5] usbmux_remote_process in CONNECTED state
[19:17:40.958][5] usbmux_remote_process: sending 458 bytes to remote (fd 7)
[19:17:40.958][5] remote_process_send
[19:17:40.958][5] remote_process_send: sending 458 to usbmuxd (7)
[19:17:40.958][5] remote_process_send: returned 458
[19:17:40.975][5] usbmux_remote_process in CONNECTED state
[19:17:40.976][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:40.976][5] usbmux_remote_process: read 446 bytes from remote (fd 7) requested 524288
[19:17:40.976][5] client_process in CONNECTED state, fd=6
[19:17:40.976][5] writing to client 6 from remote buffer
[19:17:40.976][5] sending 446 bytes to client
[19:17:40.979][4] New client on fd 8 (pid 42172)
[19:17:40.980][5] process_recv fd 8
[19:17:40.980][5] process_recv fd 8
[19:17:40.980][5] Client command in fd 8 len 564 ver 1 msg 8 tag 0
[19:17:40.980][5] client_command: Message is Connect client fd 8
[19:17:40.980][5] Client 8 connection request to device 1 port 49226
[19:17:40.980][4] New Remote fd 9
[19:17:40.980][5] remote_send_pkt fd 9 tag 0 msg 8 payload_length 548
[19:17:40.980][5] remote_process_send
[19:17:40.980][5] remote_process_send: sending 564 to usbmuxd (9)
[19:17:40.980][5] remote_process_send: returned 564
[19:17:40.981][5] remote_process_recv
[19:17:40.981][5] remote_process_recv
[19:17:40.981][5] remote_handle_command_result fd 9 len 294 ver 1 msg 8 tag 0
[19:17:40.981][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:40.981][5] send_pkt fd 8 tag 0 msg 8 payload_length 278
[19:17:40.981][5] Remote 9 switching to CONNECTED state
[19:17:40.981][5] process_send
[19:17:40.981][5] process_send: sent 294 (of 294)
[19:17:40.981][5] Client 8 switching to CONNECTED state, remote 9
[19:17:40.981][5] usbmux_remote_process in CONNECTED state
[19:17:40.981][5] usbmux_remote_process: sending 0 bytes to remote (fd 9)
[19:17:40.981][5] remote_process_send
[19:17:40.981][5] Remote 9 OUT process but nothing to send?
[19:17:40.986][4] New client on fd 12 (pid 42173)
[19:17:40.987][5] process_recv fd 12
[19:17:40.987][5] process_recv fd 12
[19:17:40.987][5] Client command in fd 12 len 482 ver 1 msg 8 tag 14
[19:17:40.987][5] client_command: Message is ReadBUID client fd 12
[19:17:40.987][4] New Remote fd 13
[19:17:40.987][5] remote_send_pkt fd 13 tag 14 msg 8 payload_length 466
[19:17:40.987][5] remote_process_send
[19:17:40.987][5] remote_process_send: sending 482 to usbmuxd (13)
[19:17:40.987][5] remote_process_send: returned 482
[19:17:40.987][5] remote_process_recv
[19:17:40.987][5] remote_process_recv
[19:17:40.987][5] remote_handle_command_result fd 13 len 276 ver 1 msg 8 tag 14
[19:17:40.987][5] send_pkt_raw fd 12 buffer_length 16
[19:17:40.987][5] send_pkt_raw fd 12 buffer_length 260
[19:17:40.987][5] process_send
[19:17:40.987][5] process_send: sent 276 (of 276)
[19:17:40.990][5] process_recv fd 12
[19:17:40.990][4] Client 12 connection closed
[19:17:40.990][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.990][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.990][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.992][4] New client on fd 12 (pid 42174)
[19:17:40.992][5] process_recv fd 12
[19:17:40.992][5] process_recv fd 12
[19:17:40.992][5] Client command in fd 12 len 557 ver 1 msg 8 tag 15
[19:17:40.992][5] client_command: Message is ReadPairRecord client fd 12
[19:17:40.992][4] New Remote fd 13
[19:17:40.992][5] remote_send_pkt fd 13 tag 15 msg 8 payload_length 541
[19:17:40.992][5] remote_process_send
[19:17:40.992][5] remote_process_send: sending 557 to usbmuxd (13)
[19:17:40.992][5] remote_process_send: returned 557
[19:17:40.992][5] remote_process_recv
[19:17:40.992][5] remote_process_recv
[19:17:40.992][5] remote_handle_command_result fd 13 len 13154 ver 1 msg 8 tag 15
[19:17:40.992][5] send_pkt_raw fd 12 buffer_length 16
[19:17:40.992][5] send_pkt_raw fd 12 buffer_length 13138
[19:17:40.992][5] process_send
[19:17:40.992][5] process_send: sent 13154 (of 13154)
[19:17:40.996][5] process_recv fd 12
[19:17:40.996][4] Client 12 connection closed
[19:17:40.996][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:40.996][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:40.996][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:40.998][4] New client on fd 12 (pid 42175)
[19:17:41.006][5] process_recv fd 12
[19:17:41.007][5] process_recv fd 12
[19:17:41.007][5] Client command in fd 12 len 564 ver 1 msg 8 tag 0
[19:17:41.007][5] client_command: Message is Connect client fd 12
[19:17:41.007][5] Client 12 connection request to device 1 port 62078
[19:17:41.007][4] New Remote fd 13
[19:17:41.007][5] remote_send_pkt fd 13 tag 0 msg 8 payload_length 548
[19:17:41.007][5] remote_process_send
[19:17:41.007][5] remote_process_send: sending 564 to usbmuxd (13)
[19:17:41.007][5] remote_process_send: returned 564
[19:17:41.007][5] remote_process_recv
[19:17:41.007][5] remote_process_recv
[19:17:41.007][5] remote_handle_command_result fd 13 len 294 ver 1 msg 8 tag 0
[19:17:41.007][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:41.007][5] send_pkt fd 12 tag 0 msg 8 payload_length 278
[19:17:41.007][5] Remote 13 switching to CONNECTED state
[19:17:41.007][5] process_send
[19:17:41.007][5] process_send: sent 294 (of 294)
[19:17:41.007][5] Client 12 switching to CONNECTED state, remote 13
[19:17:41.007][5] usbmux_remote_process in CONNECTED state
[19:17:41.007][5] usbmux_remote_process: sending 0 bytes to remote (fd 13)
[19:17:41.007][5] remote_process_send
[19:17:41.007][5] Remote 13 OUT process but nothing to send?
[19:17:41.010][5] client_process in CONNECTED state, fd=12
[19:17:41.010][5] read from client 12 to remote buffer
[19:17:41.010][5] client read returned 333
[19:17:41.010][5] usbmux_remote_process in CONNECTED state
[19:17:41.010][5] usbmux_remote_process: sending 333 bytes to remote (fd 13)
[19:17:41.010][5] remote_process_send
[19:17:41.010][5] remote_process_send: sending 333 to usbmuxd (13)
[19:17:41.010][5] remote_process_send: returned 333
[19:17:41.011][5] usbmux_remote_process in CONNECTED state
[19:17:41.011][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:41.011][5] usbmux_remote_process: read 301 bytes from remote (fd 13) requested 524288
[19:17:41.011][5] client_process in CONNECTED state, fd=12
[19:17:41.011][5] writing to client 12 from remote buffer
[19:17:41.011][5] sending 301 bytes to client
[19:17:41.012][5] client_process in CONNECTED state, fd=12
[19:17:41.013][5] read from client 12 to remote buffer
[19:17:41.013][5] client read returned 381
[19:17:41.013][5] usbmux_remote_process in CONNECTED state
[19:17:41.013][5] usbmux_remote_process: sending 381 bytes to remote (fd 13)
[19:17:41.013][5] remote_process_send
[19:17:41.013][5] remote_process_send: sending 381 to usbmuxd (13)
[19:17:41.013][5] remote_process_send: returned 381
[19:17:41.014][5] usbmux_remote_process in CONNECTED state
[19:17:41.014][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:41.014][5] usbmux_remote_process: read 331 bytes from remote (fd 13) requested 524288
[19:17:41.014][5] client_process in CONNECTED state, fd=12
[19:17:41.014][5] writing to client 12 from remote buffer
[19:17:41.014][5] sending 331 bytes to client
[19:17:41.016][5] client_process in CONNECTED state, fd=12
[19:17:41.016][5] read from client 12 to remote buffer
[19:17:41.016][5] client read returned 0
[19:17:41.016][4] Client 12 connection closed
[19:17:41.016][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:41.016][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:41.016][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:41.018][4] New client on fd 12 (pid 42176)
[19:17:41.026][5] process_recv fd 12
[19:17:41.026][5] process_recv fd 12
[19:17:41.026][5] Client command in fd 12 len 564 ver 1 msg 8 tag 0
[19:17:41.026][5] client_command: Message is Connect client fd 12
[19:17:41.026][5] Client 12 connection request to device 1 port 62078
[19:17:41.026][4] New Remote fd 13
[19:17:41.026][5] remote_send_pkt fd 13 tag 0 msg 8 payload_length 548
[19:17:41.026][5] remote_process_send
[19:17:41.026][5] remote_process_send: sending 564 to usbmuxd (13)
[19:17:41.026][5] remote_process_send: returned 564
[19:17:41.027][5] remote_process_recv
[19:17:41.027][5] remote_process_recv
[19:17:41.027][5] remote_handle_command_result fd 13 len 294 ver 1 msg 8 tag 0
[19:17:41.027][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:41.027][5] send_pkt fd 12 tag 0 msg 8 payload_length 278
[19:17:41.027][5] Remote 13 switching to CONNECTED state
[19:17:41.027][5] process_send
[19:17:41.027][5] process_send: sent 294 (of 294)
[19:17:41.027][5] Client 12 switching to CONNECTED state, remote 13
[19:17:41.027][5] usbmux_remote_process in CONNECTED state
[19:17:41.027][5] usbmux_remote_process: sending 0 bytes to remote (fd 13)
[19:17:41.027][5] remote_process_send
[19:17:41.027][5] Remote 13 OUT process but nothing to send?
[19:17:41.031][5] client_process in CONNECTED state, fd=12
[19:17:41.031][5] read from client 12 to remote buffer
[19:17:41.031][5] client read returned 333
[19:17:41.031][5] usbmux_remote_process in CONNECTED state
[19:17:41.031][5] usbmux_remote_process: sending 333 bytes to remote (fd 13)
[19:17:41.031][5] remote_process_send
[19:17:41.031][5] remote_process_send: sending 333 to usbmuxd (13)
[19:17:41.031][5] remote_process_send: returned 333
[19:17:41.032][5] usbmux_remote_process in CONNECTED state
[19:17:41.032][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:41.032][5] usbmux_remote_process: read 4 bytes from remote (fd 13) requested 524288
[19:17:41.032][5] client_process in CONNECTED state, fd=12
[19:17:41.032][5] writing to client 12 from remote buffer
[19:17:41.032][5] sending 4 bytes to client
[19:17:41.032][5] usbmux_remote_process in CONNECTED state
[19:17:41.032][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:41.032][5] usbmux_remote_process: read 297 bytes from remote (fd 13) requested 524288
[19:17:41.032][5] client_process in CONNECTED state, fd=12
[19:17:41.032][5] writing to client 12 from remote buffer
[19:17:41.032][5] sending 297 bytes to client
[19:17:41.041][5] client_process in CONNECTED state, fd=12
[19:17:41.041][5] read from client 12 to remote buffer
[19:17:41.041][5] client read returned 378
[19:17:41.041][5] usbmux_remote_process in CONNECTED state
[19:17:41.041][5] usbmux_remote_process: sending 378 bytes to remote (fd 13)
[19:17:41.041][5] remote_process_send
[19:17:41.041][5] remote_process_send: sending 378 to usbmuxd (13)
[19:17:41.041][5] remote_process_send: returned 378
[19:17:41.042][5] usbmux_remote_process in CONNECTED state
[19:17:41.042][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[19:17:41.042][5] usbmux_remote_process: read 331 bytes from remote (fd 13) requested 524288
[19:17:41.042][5] client_process in CONNECTED state, fd=12
[19:17:41.042][5] writing to client 12 from remote buffer
[19:17:41.042][5] sending 331 bytes to client
[19:17:41.044][5] client_process in CONNECTED state, fd=12
[19:17:41.044][5] read from client 12 to remote buffer
[19:17:41.044][5] client read returned 0
[19:17:41.044][4] Client 12 connection closed
[19:17:41.044][4] Disconnecting client 0x55fa0bcdff80 fd 12
[19:17:41.044][5] Client 0x55fa0bcdff80 notifying close on remote 0x55fa0bce01c0
[19:17:41.044][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bce01c0 fd 13
[19:17:41.045][5] client_process in CONNECTED state, fd=8
[19:17:41.045][5] read from client 8 to remote buffer
[19:17:41.045][5] client read returned 318
[19:17:41.045][5] usbmux_remote_process in CONNECTED state
[19:17:41.045][5] usbmux_remote_process: sending 318 bytes to remote (fd 9)
[19:17:41.045][5] remote_process_send
[19:17:41.045][5] remote_process_send: sending 318 to usbmuxd (9)
[19:17:41.045][5] remote_process_send: returned 318
[19:17:41.077][5] usbmux_remote_process in CONNECTED state
[19:17:41.077][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:41.077][5] usbmux_remote_process: read 1250 bytes from remote (fd 9) requested 524288
[19:17:41.077][5] client_process in CONNECTED state, fd=8
[19:17:41.077][5] writing to client 8 from remote buffer
[19:17:41.077][5] sending 1250 bytes to client
[19:17:41.098][5] client_process in CONNECTED state, fd=8
[19:17:41.098][5] read from client 8 to remote buffer
[19:17:41.098][5] client read returned 1136
[19:17:41.098][5] usbmux_remote_process in CONNECTED state
[19:17:41.098][5] usbmux_remote_process: sending 1136 bytes to remote (fd 9)
[19:17:41.098][5] remote_process_send
[19:17:41.098][5] remote_process_send: sending 1136 to usbmuxd (9)
[19:17:41.098][5] remote_process_send: returned 1136
[19:17:41.109][5] usbmux_remote_process in CONNECTED state
[19:17:41.109][5] usbmux_remote_process: read from remote (fd 9) to client buffer
[19:17:41.109][5] usbmux_remote_process: read 51 bytes from remote (fd 9) requested 524288
[19:17:41.109][5] client_process in CONNECTED state, fd=8
[19:17:41.109][5] writing to client 8 from remote buffer
[19:17:41.109][5] sending 51 bytes to client
[19:17:41.111][5] client_process in CONNECTED state, fd=6
[19:17:41.111][5] read from client 6 to remote buffer
[19:17:41.111][5] client read returned 470
[19:17:41.111][5] usbmux_remote_process in CONNECTED state
[19:17:41.111][5] usbmux_remote_process: sending 470 bytes to remote (fd 7)
[19:17:41.111][5] remote_process_send
[19:17:41.111][5] remote_process_send: sending 470 to usbmuxd (7)
[19:17:41.111][5] remote_process_send: returned 470
[19:17:41.112][5] usbmux_remote_process in CONNECTED state
[19:17:41.112][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:41.112][5] usbmux_remote_process: read 300 bytes from remote (fd 7) requested 524288
[19:17:41.112][5] client_process in CONNECTED state, fd=6
[19:17:41.112][5] writing to client 6 from remote buffer
[19:17:41.112][5] sending 300 bytes to client
[19:17:41.117][5] client_process in CONNECTED state, fd=6
[19:17:41.117][5] read from client 6 to remote buffer
[19:17:41.117][5] client read returned 31
[19:17:41.117][5] usbmux_remote_process in CONNECTED state
[19:17:41.117][5] usbmux_remote_process: sending 31 bytes to remote (fd 7)
[19:17:41.117][5] remote_process_send
[19:17:41.117][5] remote_process_send: sending 31 to usbmuxd (7)
[19:17:41.117][5] remote_process_send: returned 31
[19:17:41.118][5] usbmux_remote_process in CONNECTED state
[19:17:41.118][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:41.118][5] usbmux_remote_process: read 31 bytes from remote (fd 7) requested 524288
[19:17:41.118][5] client_process in CONNECTED state, fd=6
[19:17:41.118][5] writing to client 6 from remote buffer
[19:17:41.118][5] sending 31 bytes to client
[19:17:41.120][5] client_process in CONNECTED state, fd=6
[19:17:41.120][5] read from client 6 to remote buffer
[19:17:41.120][5] client read returned 0
[19:17:41.120][4] Client 6 connection closed
[19:17:41.120][4] Disconnecting client 0x55fa0bbaf680 fd 6
[19:17:41.120][5] Client 0x55fa0bbaf680 notifying close on remote 0x55fa0bc4feb0
[19:17:41.120][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bc4feb0 fd 7
[19:17:41.121][5] client_process in CONNECTED state, fd=8
[19:17:41.121][5] read from client 8 to remote buffer
[19:17:41.121][5] client read returned 143
[19:17:41.121][5] usbmux_remote_process in CONNECTED state
[19:17:41.121][5] usbmux_remote_process: sending 143 bytes to remote (fd 9)
[19:17:41.121][5] remote_process_send
[19:17:41.121][5] remote_process_send: sending 143 to usbmuxd (9)
[19:17:41.121][5] remote_process_send: returned 143
[19:17:41.123][4] New client on fd 6 (pid 42177)
[19:17:41.123][5] process_recv fd 6
[19:17:41.123][5] process_recv fd 6
[19:17:41.123][5] Client command in fd 6 len 564 ver 1 msg 8 tag 0
[19:17:41.123][5] client_command: Message is Connect client fd 6
[19:17:41.123][5] Client 6 connection request to device 1 port 62078
[19:17:41.123][4] New Remote fd 7
[19:17:41.123][5] remote_send_pkt fd 7 tag 0 msg 8 payload_length 548
[19:17:41.123][5] remote_process_send
[19:17:41.123][5] remote_process_send: sending 564 to usbmuxd (7)
[19:17:41.123][5] remote_process_send: returned 564
[19:17:41.124][5] remote_process_recv
[19:17:41.124][5] remote_process_recv
[19:17:41.124][5] remote_handle_command_result fd 7 len 294 ver 1 msg 8 tag 0
[19:17:41.124][5] remote_handle_command_result: got result 0 for Connect request from remote
[19:17:41.124][5] send_pkt fd 6 tag 0 msg 8 payload_length 278
[19:17:41.124][5] Remote 7 switching to CONNECTED state
[19:17:41.124][5] process_send
[19:17:41.124][5] process_send: sent 294 (of 294)
[19:17:41.124][5] Client 6 switching to CONNECTED state, remote 7
[19:17:41.124][5] usbmux_remote_process in CONNECTED state
[19:17:41.124][5] usbmux_remote_process: sending 0 bytes to remote (fd 7)
[19:17:41.124][5] remote_process_send
[19:17:41.124][5] Remote 7 OUT process but nothing to send?
[19:17:41.126][5] client_process in CONNECTED state, fd=6
[19:17:41.126][5] read from client 6 to remote buffer
[19:17:41.126][5] client read returned 333
[19:17:41.126][5] usbmux_remote_process in CONNECTED state
[19:17:41.126][5] usbmux_remote_process: sending 333 bytes to remote (fd 7)
[19:17:41.126][5] remote_process_send
[19:17:41.126][5] remote_process_send: sending 333 to usbmuxd (7)
[19:17:41.126][5] remote_process_send: returned 333
[19:17:41.127][5] usbmux_remote_process in CONNECTED state
[19:17:41.127][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:41.127][5] usbmux_remote_process: read 301 bytes from remote (fd 7) requested 524288
[19:17:41.127][5] client_process in CONNECTED state, fd=6
[19:17:41.127][5] writing to client 6 from remote buffer
[19:17:41.127][5] sending 301 bytes to client
[19:17:41.128][5] client_process in CONNECTED state, fd=6
[19:17:41.128][5] read from client 6 to remote buffer
[19:17:41.128][5] client read returned 381
[19:17:41.128][5] usbmux_remote_process in CONNECTED state
[19:17:41.128][5] usbmux_remote_process: sending 381 bytes to remote (fd 7)
[19:17:41.128][5] remote_process_send
[19:17:41.128][5] remote_process_send: sending 381 to usbmuxd (7)
[19:17:41.128][5] remote_process_send: returned 381
[19:17:41.129][5] usbmux_remote_process in CONNECTED state
[19:17:41.129][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:41.129][5] usbmux_remote_process: read 331 bytes from remote (fd 7) requested 524288
[19:17:41.129][5] client_process in CONNECTED state, fd=6
[19:17:41.129][5] writing to client 6 from remote buffer
[19:17:41.129][5] sending 331 bytes to client
[19:17:41.140][5] client_process in CONNECTED state, fd=6
[19:17:41.140][5] read from client 6 to remote buffer
[19:17:41.140][5] client read returned 378
[19:17:41.140][5] usbmux_remote_process in CONNECTED state
[19:17:41.140][5] usbmux_remote_process: sending 378 bytes to remote (fd 7)
[19:17:41.140][5] remote_process_send
[19:17:41.140][5] remote_process_send: sending 378 to usbmuxd (7)
[19:17:41.140][5] remote_process_send: returned 378
[19:17:41.141][5] usbmux_remote_process in CONNECTED state
[19:17:41.141][5] usbmux_remote_process: read from remote (fd 7) to client buffer
[19:17:41.141][5] usbmux_remote_process: read 332 bytes from remote (fd 7) requested 524288
[19:17:41.141][5] client_process in CONNECTED state, fd=6
[19:17:41.141][5] writing to client 6 from remote buffer
[19:17:41.141][5] sending 332 bytes to client
[19:17:41.144][5] client_process in CONNECTED state, fd=6
[19:17:41.144][5] read from client 6 to remote buffer
[19:17:41.144][5] client read returned 0
[19:17:41.144][4] Client 6 connection closed
[19:17:41.144][4] Disconnecting client 0x55fa0bbaf680 fd 6
[19:17:41.144][5] Client 0x55fa0bbaf680 notifying close on remote 0x55fa0bc4feb0
[19:17:41.144][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bc4feb0 fd 7
[19:17:42.302][5] client_process in CONNECTED state, fd=8
[19:17:42.302][5] read from client 8 to remote buffer
[19:17:42.302][5] client read returned 0
[19:17:42.302][4] Client 8 connection closed
[19:17:42.302][4] Disconnecting client 0x55fa0ba5e7b0 fd 8
[19:17:42.302][5] Client 0x55fa0ba5e7b0 notifying close on remote 0x55fa0bb1f590
[19:17:42.302][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0bb1f590 fd 9
[19:17:43.306][4] New client on fd 6 (pid 42178)
[19:17:43.306][5] process_recv fd 6
[19:17:43.306][4] Client 6 connection closed
[19:17:43.306][4] Disconnecting client 0x55fa0ba5e7b0 fd 6
[19:17:45.194][5] client_process in CONNECTED state, fd=10
[19:17:45.195][5] read from client 10 to remote buffer
[19:17:45.195][5] client read returned 0
[19:17:45.195][4] Client 10 connection closed
[19:17:45.195][4] Disconnecting client 0x55fa0bbafae0 fd 10
[19:17:45.195][5] Client 0x55fa0bbafae0 notifying close on remote 0x55fa0ba8eda0
[19:17:45.195][4] usbmux_remote_dispose: Disconnecting remote 0x55fa0ba8eda0 fd 11
guest
[13:17:59.162][4] New client on fd 9
[13:17:59.163][5] process_recv fd 9
[13:17:59.163][5] process_recv fd 9
[13:17:59.163][5] Client command in fd 9 len 566 ver 1 msg 8 tag 2
[13:17:59.163][5] client_command: Message is Listen client fd 9
[13:17:59.163][5] send_pkt fd 9 tag 2 msg 8 payload_length 278
[13:17:59.163][5] Client 9 now LISTENING
[13:17:59.163][5] notify_device_add: proto version 1
[13:17:59.163][5] send_pkt fd 9 tag 0 msg 8 payload_length 664
[13:17:59.163][5] process_send
[13:17:59.163][5] process_send: sent 974 (of 974)
[13:17:59.165][4] New client on fd 10
[13:17:59.165][5] process_recv fd 10
[13:17:59.165][5] process_recv fd 10
[13:17:59.165][5] Client command in fd 10 len 571 ver 1 msg 8 tag 3
[13:17:59.165][5] client_command: Message is Connect client fd 10
[13:17:59.165][5] Client 10 connection request to device 16777217 port 62078
[13:17:59.166][1] 10.0.2.2:5000 is open
[13:17:59.166][4] New Remote fd 11
[13:17:59.166][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[13:17:59.166][5] remote_process_send
[13:17:59.166][5] remote_process_send: sending 564 to usbmuxd (11)
[13:17:59.166][5] remote_process_send: returned 564
[13:17:59.168][5] remote_process_recv
[13:17:59.168][5] remote_process_recv
[13:17:59.168][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[13:17:59.168][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.168][5] send_pkt fd 10 tag 3 msg 8 payload_length 278
[13:17:59.168][5] Remote 11 switching to CONNECTED state
[13:17:59.168][5] process_send
[13:17:59.168][5] process_send: sent 294 (of 294)
[13:17:59.168][5] Client 10 switching to CONNECTED state, remote 11
[13:17:59.169][5] usbmux_remote_process in CONNECTED state
[13:17:59.169][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[13:17:59.169][5] remote_process_send
[13:17:59.169][5] Remote 11 OUT process but nothing to send?
[13:17:59.169][5] client_process in CONNECTED state, fd=10
[13:17:59.169][5] read from client 10 to remote buffer
[13:17:59.170][5] client read returned 333
[13:17:59.170][5] usbmux_remote_process in CONNECTED state
[13:17:59.170][5] usbmux_remote_process: sending 333 bytes to remote (fd 11)
[13:17:59.170][5] remote_process_send
[13:17:59.170][5] remote_process_send: sending 333 to usbmuxd (11)
[13:17:59.170][5] remote_process_send: returned 333
[13:17:59.172][5] usbmux_remote_process in CONNECTED state
[13:17:59.172][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.172][5] usbmux_remote_process: read 301 bytes from remote (fd 11) requested 524288
[13:17:59.172][5] client_process in CONNECTED state, fd=10
[13:17:59.172][5] writing to client 10 from remote buffer
[13:17:59.172][5] sending 301 bytes to client
[13:17:59.173][4] New client on fd 12
[13:17:59.173][5] process_recv fd 12
[13:17:59.173][5] process_recv fd 12
[13:17:59.173][5] Client command in fd 12 len 473 ver 1 msg 8 tag 4
[13:17:59.173][5] client_command: Message is ReadBUID client fd 12
[13:17:59.174][1] 10.0.2.2:5000 is open
[13:17:59.174][4] New Remote fd 13
[13:17:59.174][5] remote_send_pkt fd 13 tag 4 msg 8 payload_length 466
[13:17:59.174][5] remote_process_send
[13:17:59.174][5] remote_process_send: sending 482 to usbmuxd (13)
[13:17:59.174][5] remote_process_send: returned 482
[13:17:59.175][5] remote_process_recv
[13:17:59.175][5] remote_process_recv
[13:17:59.175][5] remote_handle_command_result fd 13 len 276 ver 1 msg 8 tag 4
[13:17:59.175][5] send_pkt_raw fd 12 buffer_length 16
[13:17:59.175][5] send_pkt_raw fd 12 buffer_length 260
[13:17:59.175][5] process_send
[13:17:59.175][5] process_send: sent 276 (of 276)
[13:17:59.176][4] New client on fd 14
[13:17:59.176][5] process_recv fd 12
[13:17:59.176][4] Client 12 connection closed
[13:17:59.176][4] Disconnecting client 0x6000035840c0 fd 12
[13:17:59.177][5] Client 0x6000035840c0 notifying close on remote 0x7fa6dcf05e00
[13:17:59.177][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05e00 fd 13
[13:17:59.177][5] process_recv fd 14
[13:17:59.178][5] process_recv fd 14
[13:17:59.178][5] Client command in fd 14 len 548 ver 1 msg 8 tag 5
[13:17:59.178][5] client_command: Message is ReadPairRecord client fd 14
[13:17:59.179][1] 10.0.2.2:5000 is open
[13:17:59.179][4] New Remote fd 12
[13:17:59.179][5] remote_send_pkt fd 12 tag 5 msg 8 payload_length 541
[13:17:59.179][5] remote_process_send
[13:17:59.179][5] remote_process_send: sending 557 to usbmuxd (12)
[13:17:59.179][5] remote_process_send: returned 557
[13:17:59.180][5] remote_process_recv
[13:17:59.181][5] remote_process_recv
[13:17:59.181][5] remote_handle_command_result fd 12 len 13154 ver 1 msg 8 tag 5
[13:17:59.181][5] send_pkt_raw fd 14 buffer_length 16
[13:17:59.181][5] send_pkt_raw fd 14 buffer_length 13138
[13:17:59.181][5] process_send
[13:17:59.181][5] process_send: sent 8192 (of 13154)
[13:17:59.182][5] process_send
[13:17:59.182][5] process_send: sent 4962 (of 4962)
[13:17:59.182][5] client_process in CONNECTED state, fd=10
[13:17:59.182][5] read from client 10 to remote buffer
[13:17:59.182][5] client read returned 488
[13:17:59.182][5] process_recv fd 14
[13:17:59.183][4] Client 14 connection closed
[13:17:59.183][4] Disconnecting client 0x600003584120 fd 14
[13:17:59.183][5] Client 0x600003584120 notifying close on remote 0x7fa6dd904480
[13:17:59.183][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 12
[13:17:59.183][5] usbmux_remote_process in CONNECTED state
[13:17:59.183][5] usbmux_remote_process: sending 488 bytes to remote (fd 11)
[13:17:59.183][5] remote_process_send
[13:17:59.184][5] remote_process_send: sending 488 to usbmuxd (11)
[13:17:59.184][5] remote_process_send: returned 488
[13:17:59.186][5] usbmux_remote_process in CONNECTED state
[13:17:59.186][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.186][5] usbmux_remote_process: read 358 bytes from remote (fd 11) requested 524288
[13:17:59.186][5] client_process in CONNECTED state, fd=10
[13:17:59.186][5] writing to client 10 from remote buffer
[13:17:59.187][5] sending 358 bytes to client
[13:17:59.188][4] New client on fd 12
[13:17:59.188][5] process_recv fd 12
[13:17:59.188][5] process_recv fd 12
[13:17:59.188][5] Client command in fd 12 len 571 ver 1 msg 8 tag 6
[13:17:59.188][5] client_command: Message is Connect client fd 12
[13:17:59.188][5] Client 12 connection request to device 16777217 port 62078
[13:17:59.189][1] 10.0.2.2:5000 is open
[13:17:59.189][4] New Remote fd 13
[13:17:59.189][5] remote_send_pkt fd 13 tag 0 msg 8 payload_length 548
[13:17:59.189][5] remote_process_send
[13:17:59.189][5] remote_process_send: sending 564 to usbmuxd (13)
[13:17:59.190][5] remote_process_send: returned 564
[13:17:59.191][5] remote_process_recv
[13:17:59.191][5] remote_process_recv
[13:17:59.191][5] remote_handle_command_result fd 13 len 294 ver 1 msg 8 tag 0
[13:17:59.191][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.192][5] send_pkt fd 12 tag 6 msg 8 payload_length 278
[13:17:59.192][5] Remote 13 switching to CONNECTED state
[13:17:59.192][5] process_send
[13:17:59.192][5] process_send: sent 294 (of 294)
[13:17:59.192][5] Client 12 switching to CONNECTED state, remote 13
[13:17:59.192][5] usbmux_remote_process in CONNECTED state
[13:17:59.192][5] usbmux_remote_process: sending 0 bytes to remote (fd 13)
[13:17:59.192][5] remote_process_send
[13:17:59.192][5] Remote 13 OUT process but nothing to send?
[13:17:59.193][5] client_process in CONNECTED state, fd=12
[13:17:59.193][5] read from client 12 to remote buffer
[13:17:59.193][5] client read returned 333
[13:17:59.193][5] usbmux_remote_process in CONNECTED state
[13:17:59.193][5] usbmux_remote_process: sending 333 bytes to remote (fd 13)
[13:17:59.193][5] remote_process_send
[13:17:59.193][5] remote_process_send: sending 333 to usbmuxd (13)
[13:17:59.193][5] remote_process_send: returned 333
[13:17:59.195][5] usbmux_remote_process in CONNECTED state
[13:17:59.195][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[13:17:59.195][5] usbmux_remote_process: read 301 bytes from remote (fd 13) requested 524288
[13:17:59.195][5] client_process in CONNECTED state, fd=12
[13:17:59.195][5] writing to client 12 from remote buffer
[13:17:59.195][5] sending 301 bytes to client
[13:17:59.195][5] client_process in CONNECTED state, fd=12
[13:17:59.195][5] read from client 12 to remote buffer
[13:17:59.196][5] client read returned 381
[13:17:59.196][5] usbmux_remote_process in CONNECTED state
[13:17:59.196][5] usbmux_remote_process: sending 381 bytes to remote (fd 13)
[13:17:59.196][5] remote_process_send
[13:17:59.196][5] remote_process_send: sending 381 to usbmuxd (13)
[13:17:59.196][5] remote_process_send: returned 381
[13:17:59.198][5] usbmux_remote_process in CONNECTED state
[13:17:59.198][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[13:17:59.198][5] usbmux_remote_process: read 331 bytes from remote (fd 13) requested 524288
[13:17:59.198][5] client_process in CONNECTED state, fd=12
[13:17:59.198][5] writing to client 12 from remote buffer
[13:17:59.198][5] sending 331 bytes to client
[13:17:59.199][4] New client on fd 14
[13:17:59.199][5] client_process in CONNECTED state, fd=12
[13:17:59.199][5] read from client 12 to remote buffer
[13:17:59.199][5] client read returned 0
[13:17:59.199][4] Client 12 connection closed
[13:17:59.199][4] Disconnecting client 0x6000035801e0 fd 12
[13:17:59.199][5] Client 0x6000035801e0 notifying close on remote 0x7fa6dd904480
[13:17:59.199][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 13
[13:17:59.202][5] process_recv fd 14
[13:17:59.202][5] process_recv fd 14
[13:17:59.202][5] Client command in fd 14 len 571 ver 1 msg 8 tag 7
[13:17:59.202][5] client_command: Message is Connect client fd 14
[13:17:59.202][5] Client 14 connection request to device 16777217 port 62078
[13:17:59.203][1] 10.0.2.2:5000 is open
[13:17:59.203][4] New Remote fd 12
[13:17:59.203][5] remote_send_pkt fd 12 tag 0 msg 8 payload_length 548
[13:17:59.203][5] remote_process_send
[13:17:59.203][5] remote_process_send: sending 564 to usbmuxd (12)
[13:17:59.204][5] remote_process_send: returned 564
[13:17:59.205][5] remote_process_recv
[13:17:59.205][5] remote_process_recv
[13:17:59.205][5] remote_handle_command_result fd 12 len 294 ver 1 msg 8 tag 0
[13:17:59.205][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.205][5] send_pkt fd 14 tag 7 msg 8 payload_length 278
[13:17:59.205][5] Remote 12 switching to CONNECTED state
[13:17:59.206][5] process_send
[13:17:59.206][5] process_send: sent 294 (of 294)
[13:17:59.206][5] Client 14 switching to CONNECTED state, remote 12
[13:17:59.206][5] usbmux_remote_process in CONNECTED state
[13:17:59.206][5] usbmux_remote_process: sending 0 bytes to remote (fd 12)
[13:17:59.206][5] remote_process_send
[13:17:59.206][5] Remote 12 OUT process but nothing to send?
[13:17:59.206][5] client_process in CONNECTED state, fd=14
[13:17:59.206][5] read from client 14 to remote buffer
[13:17:59.206][5] client read returned 333
[13:17:59.207][5] usbmux_remote_process in CONNECTED state
[13:17:59.207][5] usbmux_remote_process: sending 333 bytes to remote (fd 12)
[13:17:59.207][5] remote_process_send
[13:17:59.207][5] remote_process_send: sending 333 to usbmuxd (12)
[13:17:59.207][5] remote_process_send: returned 333
[13:17:59.208][5] usbmux_remote_process in CONNECTED state
[13:17:59.208][5] usbmux_remote_process: read from remote (fd 12) to client buffer
[13:17:59.209][5] usbmux_remote_process: read 301 bytes from remote (fd 12) requested 524288
[13:17:59.209][5] client_process in CONNECTED state, fd=14
[13:17:59.209][5] writing to client 14 from remote buffer
[13:17:59.209][5] sending 301 bytes to client
[13:17:59.209][5] client_process in CONNECTED state, fd=14
[13:17:59.209][5] read from client 14 to remote buffer
[13:17:59.209][5] client read returned 378
[13:17:59.209][5] usbmux_remote_process in CONNECTED state
[13:17:59.209][5] usbmux_remote_process: sending 378 bytes to remote (fd 12)
[13:17:59.209][5] remote_process_send
[13:17:59.210][5] remote_process_send: sending 378 to usbmuxd (12)
[13:17:59.210][5] remote_process_send: returned 378
[13:17:59.211][5] usbmux_remote_process in CONNECTED state
[13:17:59.212][5] usbmux_remote_process: read from remote (fd 12) to client buffer
[13:17:59.212][5] usbmux_remote_process: read 331 bytes from remote (fd 12) requested 524288
[13:17:59.212][5] client_process in CONNECTED state, fd=14
[13:17:59.212][5] writing to client 14 from remote buffer
[13:17:59.212][5] sending 331 bytes to client
[13:17:59.213][5] client_process in CONNECTED state, fd=10
[13:17:59.213][5] read from client 10 to remote buffer
[13:17:59.213][5] client read returned 318
[13:17:59.213][5] client_process in CONNECTED state, fd=14
[13:17:59.213][5] read from client 14 to remote buffer
[13:17:59.214][5] client read returned 0
[13:17:59.214][4] Client 14 connection closed
[13:17:59.214][4] Disconnecting client 0x6000035802a0 fd 14
[13:17:59.214][5] Client 0x6000035802a0 notifying close on remote 0x7fa6dcf05e00
[13:17:59.214][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05e00 fd 12
[13:17:59.215][5] usbmux_remote_process in CONNECTED state
[13:17:59.215][5] usbmux_remote_process: sending 318 bytes to remote (fd 11)
[13:17:59.215][5] remote_process_send
[13:17:59.215][5] remote_process_send: sending 318 to usbmuxd (11)
[13:17:59.215][5] remote_process_send: returned 318
[13:17:59.249][5] usbmux_remote_process in CONNECTED state
[13:17:59.250][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.250][5] usbmux_remote_process: read 1250 bytes from remote (fd 11) requested 524288
[13:17:59.250][5] client_process in CONNECTED state, fd=10
[13:17:59.250][5] writing to client 10 from remote buffer
[13:17:59.250][5] sending 1250 bytes to client
[13:17:59.467][5] client_process in CONNECTED state, fd=10
[13:17:59.467][5] read from client 10 to remote buffer
[13:17:59.467][5] client read returned 1149
[13:17:59.468][5] usbmux_remote_process in CONNECTED state
[13:17:59.468][5] usbmux_remote_process: sending 1149 bytes to remote (fd 11)
[13:17:59.468][5] remote_process_send
[13:17:59.468][5] remote_process_send: sending 1149 to usbmuxd (11)
[13:17:59.470][5] remote_process_send: returned 1149
[13:17:59.490][5] usbmux_remote_process in CONNECTED state
[13:17:59.490][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.490][5] usbmux_remote_process: read 51 bytes from remote (fd 11) requested 524288
[13:17:59.490][5] client_process in CONNECTED state, fd=10
[13:17:59.490][5] writing to client 10 from remote buffer
[13:17:59.490][5] sending 51 bytes to client
[13:17:59.491][5] client_process in CONNECTED state, fd=10
[13:17:59.491][5] read from client 10 to remote buffer
[13:17:59.491][5] client read returned 439
[13:17:59.493][5] usbmux_remote_process in CONNECTED state
[13:17:59.493][5] usbmux_remote_process: sending 439 bytes to remote (fd 11)
[13:17:59.493][5] remote_process_send
[13:17:59.493][5] remote_process_send: sending 439 to usbmuxd (11)
[13:17:59.493][5] remote_process_send: returned 439
[13:17:59.495][5] usbmux_remote_process in CONNECTED state
[13:17:59.495][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.495][5] usbmux_remote_process: read 389 bytes from remote (fd 11) requested 524288
[13:17:59.495][5] client_process in CONNECTED state, fd=10
[13:17:59.495][5] writing to client 10 from remote buffer
[13:17:59.495][5] sending 389 bytes to client
[13:17:59.497][5] client_process in CONNECTED state, fd=10
[13:17:59.497][5] read from client 10 to remote buffer
[13:17:59.497][5] client read returned 511
[13:17:59.498][5] usbmux_remote_process in CONNECTED state
[13:17:59.498][5] usbmux_remote_process: sending 511 bytes to remote (fd 11)
[13:17:59.498][5] remote_process_send
[13:17:59.498][5] remote_process_send: sending 511 to usbmuxd (11)
[13:17:59.499][5] remote_process_send: returned 511
[13:17:59.500][5] usbmux_remote_process in CONNECTED state
[13:17:59.500][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.500][5] usbmux_remote_process: read 445 bytes from remote (fd 11) requested 524288
[13:17:59.506][5] client_process in CONNECTED state, fd=10
[13:17:59.506][5] writing to client 10 from remote buffer
[13:17:59.506][5] sending 445 bytes to client
[13:17:59.507][5] client_process in CONNECTED state, fd=10
[13:17:59.507][5] read from client 10 to remote buffer
[13:17:59.507][5] client read returned 470
[13:17:59.507][5] usbmux_remote_process in CONNECTED state
[13:17:59.507][5] usbmux_remote_process: sending 470 bytes to remote (fd 11)
[13:17:59.507][5] remote_process_send
[13:17:59.507][5] remote_process_send: sending 470 to usbmuxd (11)
[13:17:59.507][5] remote_process_send: returned 470
[13:17:59.509][5] usbmux_remote_process in CONNECTED state
[13:17:59.509][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.509][5] usbmux_remote_process: read 300 bytes from remote (fd 11) requested 524288
[13:17:59.509][5] client_process in CONNECTED state, fd=10
[13:17:59.509][5] writing to client 10 from remote buffer
[13:17:59.509][5] sending 300 bytes to client
[13:17:59.511][5] client_process in CONNECTED state, fd=10
[13:17:59.511][5] read from client 10 to remote buffer
[13:17:59.511][5] client read returned 31
[13:17:59.511][5] usbmux_remote_process in CONNECTED state
[13:17:59.511][5] usbmux_remote_process: sending 31 bytes to remote (fd 11)
[13:17:59.511][5] remote_process_send
[13:17:59.511][5] remote_process_send: sending 31 to usbmuxd (11)
[13:17:59.512][5] remote_process_send: returned 31
[13:17:59.513][5] usbmux_remote_process in CONNECTED state
[13:17:59.514][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.514][5] usbmux_remote_process: read 31 bytes from remote (fd 11) requested 524288
[13:17:59.514][5] client_process in CONNECTED state, fd=10
[13:17:59.514][5] writing to client 10 from remote buffer
[13:17:59.514][5] sending 31 bytes to client
[13:17:59.528][4] New client on fd 12
[13:17:59.528][5] client_process in CONNECTED state, fd=10
[13:17:59.528][5] read from client 10 to remote buffer
[13:17:59.528][5] client read returned 0
[13:17:59.528][4] Client 10 connection closed
[13:17:59.528][4] Disconnecting client 0x600003584060 fd 10
[13:17:59.529][5] Client 0x600003584060 notifying close on remote 0x7fa6dd904340
[13:17:59.529][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904340 fd 11
[13:17:59.530][4] New client on fd 10
[13:17:59.530][5] process_recv fd 12
[13:17:59.530][5] process_recv fd 10
[13:17:59.530][5] process_recv fd 12
[13:17:59.531][5] Client command in fd 12 len 566 ver 1 msg 8 tag 2
[13:17:59.531][5] client_command: Message is Listen client fd 12
[13:17:59.531][5] send_pkt fd 12 tag 2 msg 8 payload_length 278
[13:17:59.531][5] Client 12 now LISTENING
[13:17:59.531][5] notify_device_add: proto version 1
[13:17:59.531][5] send_pkt fd 12 tag 0 msg 8 payload_length 664
[13:17:59.531][5] process_recv fd 10
[13:17:59.531][5] Client command in fd 10 len 571 ver 1 msg 8 tag 8
[13:17:59.531][5] client_command: Message is Connect client fd 10
[13:17:59.531][5] Client 10 connection request to device 16777217 port 62078
[13:17:59.533][1] 10.0.2.2:5000 is open
[13:17:59.535][4] New Remote fd 11
[13:17:59.535][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[13:17:59.535][5] process_send
[13:17:59.535][5] process_send: sent 974 (of 974)
[13:17:59.535][5] remote_process_send
[13:17:59.535][5] remote_process_send: sending 564 to usbmuxd (11)
[13:17:59.538][5] remote_process_send: returned 564
[13:17:59.538][4] New client on fd 13
[13:17:59.538][5] remote_process_recv
[13:17:59.538][5] process_recv fd 13
[13:17:59.538][5] remote_process_recv
[13:17:59.538][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[13:17:59.538][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.538][5] send_pkt fd 10 tag 8 msg 8 payload_length 278
[13:17:59.539][5] Remote 11 switching to CONNECTED state
[13:17:59.539][5] process_send
[13:17:59.539][5] process_send: sent 294 (of 294)
[13:17:59.539][5] Client 10 switching to CONNECTED state, remote 11
[13:17:59.539][5] process_recv fd 13
[13:17:59.539][5] Client command in fd 13 len 571 ver 1 msg 8 tag 3
[13:17:59.539][5] client_command: Message is Connect client fd 13
[13:17:59.539][5] Client 13 connection request to device 16777217 port 62078
[13:17:59.541][1] 10.0.2.2:5000 is open
[13:17:59.541][4] New Remote fd 14
[13:17:59.541][5] remote_send_pkt fd 14 tag 0 msg 8 payload_length 548
[13:17:59.541][5] usbmux_remote_process in CONNECTED state
[13:17:59.541][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[13:17:59.541][5] remote_process_send
[13:17:59.541][5] Remote 11 OUT process but nothing to send?
[13:17:59.541][5] client_process in CONNECTED state, fd=10
[13:17:59.541][5] read from client 10 to remote buffer
[13:17:59.541][5] client read returned 333
[13:17:59.541][5] remote_process_send
[13:17:59.541][5] remote_process_send: sending 564 to usbmuxd (14)
[13:17:59.542][5] remote_process_send: returned 564
[13:17:59.542][5] usbmux_remote_process in CONNECTED state
[13:17:59.542][5] usbmux_remote_process: sending 333 bytes to remote (fd 11)
[13:17:59.542][5] remote_process_send
[13:17:59.542][5] remote_process_send: sending 333 to usbmuxd (11)
[13:17:59.545][5] remote_process_send: returned 333
[13:17:59.545][5] usbmux_remote_process in CONNECTED state
[13:17:59.545][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.545][5] usbmux_remote_process: read 301 bytes from remote (fd 11) requested 524288
[13:17:59.545][5] remote_process_recv
[13:17:59.545][5] client_process in CONNECTED state, fd=10
[13:17:59.545][5] writing to client 10 from remote buffer
[13:17:59.545][5] sending 301 bytes to client
[13:17:59.545][5] remote_process_recv
[13:17:59.546][5] remote_handle_command_result fd 14 len 294 ver 1 msg 8 tag 0
[13:17:59.546][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.546][5] send_pkt fd 13 tag 3 msg 8 payload_length 278
[13:17:59.546][5] Remote 14 switching to CONNECTED state
[13:17:59.547][4] New client on fd 15
[13:17:59.547][5] process_send
[13:17:59.547][5] process_send: sent 294 (of 294)
[13:17:59.547][5] Client 13 switching to CONNECTED state, remote 14
[13:17:59.547][5] usbmux_remote_process in CONNECTED state
[13:17:59.547][5] usbmux_remote_process: sending 0 bytes to remote (fd 14)
[13:17:59.547][5] remote_process_send
[13:17:59.547][5] Remote 14 OUT process but nothing to send?
[13:17:59.547][5] process_recv fd 15
[13:17:59.547][5] process_recv fd 15
[13:17:59.547][5] Client command in fd 15 len 473 ver 1 msg 8 tag 9
[13:17:59.547][5] client_command: Message is ReadBUID client fd 15
[13:17:59.548][1] 10.0.2.2:5000 is open
[13:17:59.548][4] New Remote fd 16
[13:17:59.548][5] remote_send_pkt fd 16 tag 9 msg 8 payload_length 466
[13:17:59.562][5] client_process in CONNECTED state, fd=13
[13:17:59.562][5] read from client 13 to remote buffer
[13:17:59.562][5] client read returned 333
[13:17:59.562][5] remote_process_send
[13:17:59.562][5] remote_process_send: sending 482 to usbmuxd (16)
[13:17:59.562][5] remote_process_send: returned 482
[13:17:59.563][5] usbmux_remote_process in CONNECTED state
[13:17:59.563][5] usbmux_remote_process: sending 333 bytes to remote (fd 14)
[13:17:59.563][5] remote_process_send
[13:17:59.563][5] remote_process_send: sending 333 to usbmuxd (14)
[13:17:59.564][5] remote_process_send: returned 333
[13:17:59.564][5] remote_process_recv
[13:17:59.564][5] remote_process_recv
[13:17:59.565][5] remote_handle_command_result fd 16 len 276 ver 1 msg 8 tag 9
[13:17:59.565][5] send_pkt_raw fd 15 buffer_length 16
[13:17:59.565][5] send_pkt_raw fd 15 buffer_length 260
[13:17:59.565][5] process_send
[13:17:59.566][5] process_send: sent 276 (of 276)
[13:17:59.566][4] New client on fd 17
[13:17:59.566][5] process_recv fd 15
[13:17:59.566][4] Client 15 connection closed
[13:17:59.566][4] Disconnecting client 0x600003584120 fd 15
[13:17:59.567][5] Client 0x600003584120 notifying close on remote 0x7fa6dcf06080
[13:17:59.567][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf06080 fd 16
[13:17:59.568][5] usbmux_remote_process in CONNECTED state
[13:17:59.568][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.568][5] usbmux_remote_process: read 4 bytes from remote (fd 14) requested 524288
[13:17:59.568][5] client_process in CONNECTED state, fd=13
[13:17:59.568][5] writing to client 13 from remote buffer
[13:17:59.568][5] sending 4 bytes to client
[13:17:59.568][5] process_recv fd 17
[13:17:59.568][5] process_recv fd 17
[13:17:59.568][5] Client command in fd 17 len 548 ver 1 msg 8 tag 10
[13:17:59.569][5] client_command: Message is ReadPairRecord client fd 17
[13:17:59.575][1] 10.0.2.2:5000 is open
[13:17:59.575][4] New Remote fd 15
[13:17:59.575][5] remote_send_pkt fd 15 tag 10 msg 8 payload_length 541
[13:17:59.575][5] remote_process_send
[13:17:59.575][5] remote_process_send: sending 557 to usbmuxd (15)
[13:17:59.575][5] remote_process_send: returned 557
[13:17:59.576][5] remote_process_recv
[13:17:59.577][5] remote_process_recv
[13:17:59.577][5] remote_handle_command_result fd 15 len 13154 ver 1 msg 8 tag 10
[13:17:59.577][5] send_pkt_raw fd 17 buffer_length 16
[13:17:59.577][5] send_pkt_raw fd 17 buffer_length 13138
[13:17:59.577][5] process_send
[13:17:59.577][5] process_send: sent 8192 (of 13154)
[13:17:59.578][5] process_send
[13:17:59.578][5] process_send: sent 4962 (of 4962)
[13:17:59.579][5] client_process in CONNECTED state, fd=10
[13:17:59.579][5] read from client 10 to remote buffer
[13:17:59.579][5] client read returned 488
[13:17:59.579][5] process_recv fd 17
[13:17:59.579][4] Client 17 connection closed
[13:17:59.579][4] Disconnecting client 0x600003580120 fd 17
[13:17:59.579][5] Client 0x600003580120 notifying close on remote 0x7fa6dd904340
[13:17:59.579][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904340 fd 15
[13:17:59.583][5] usbmux_remote_process in CONNECTED state
[13:17:59.583][5] usbmux_remote_process: sending 488 bytes to remote (fd 11)
[13:17:59.583][5] remote_process_send
[13:17:59.583][5] remote_process_send: sending 488 to usbmuxd (11)
[13:17:59.584][5] remote_process_send: returned 488
[13:17:59.586][5] usbmux_remote_process in CONNECTED state
[13:17:59.586][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.586][5] usbmux_remote_process: read 358 bytes from remote (fd 11) requested 524288
[13:17:59.586][5] client_process in CONNECTED state, fd=10
[13:17:59.586][5] writing to client 10 from remote buffer
[13:17:59.586][5] sending 358 bytes to client
[13:17:59.587][4] New client on fd 15
[13:17:59.588][5] process_recv fd 15
[13:17:59.588][5] process_recv fd 15
[13:17:59.588][5] Client command in fd 15 len 571 ver 1 msg 8 tag 11
[13:17:59.588][5] client_command: Message is Connect client fd 15
[13:17:59.588][5] Client 15 connection request to device 16777217 port 62078
[13:17:59.589][1] 10.0.2.2:5000 is open
[13:17:59.589][4] New Remote fd 16
[13:17:59.589][5] remote_send_pkt fd 16 tag 0 msg 8 payload_length 548
[13:17:59.590][5] remote_process_send
[13:17:59.590][5] remote_process_send: sending 564 to usbmuxd (16)
[13:17:59.590][5] remote_process_send: returned 564
[13:17:59.591][5] remote_process_recv
[13:17:59.591][5] remote_process_recv
[13:17:59.591][5] remote_handle_command_result fd 16 len 294 ver 1 msg 8 tag 0
[13:17:59.591][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.591][5] send_pkt fd 15 tag 11 msg 8 payload_length 278
[13:17:59.591][5] Remote 16 switching to CONNECTED state
[13:17:59.592][5] process_send
[13:17:59.592][5] process_send: sent 294 (of 294)
[13:17:59.592][5] Client 15 switching to CONNECTED state, remote 16
[13:17:59.592][5] usbmux_remote_process in CONNECTED state
[13:17:59.592][5] usbmux_remote_process: sending 0 bytes to remote (fd 16)
[13:17:59.592][5] remote_process_send
[13:17:59.592][5] Remote 16 OUT process but nothing to send?
[13:17:59.593][5] client_process in CONNECTED state, fd=15
[13:17:59.593][5] read from client 15 to remote buffer
[13:17:59.593][5] client read returned 333
[13:17:59.593][5] usbmux_remote_process in CONNECTED state
[13:17:59.593][5] usbmux_remote_process: sending 333 bytes to remote (fd 16)
[13:17:59.593][5] remote_process_send
[13:17:59.593][5] remote_process_send: sending 333 to usbmuxd (16)
[13:17:59.593][5] remote_process_send: returned 333
[13:17:59.595][5] usbmux_remote_process in CONNECTED state
[13:17:59.595][5] usbmux_remote_process: read from remote (fd 16) to client buffer
[13:17:59.595][5] usbmux_remote_process: read 301 bytes from remote (fd 16) requested 524288
[13:17:59.595][5] client_process in CONNECTED state, fd=15
[13:17:59.595][5] writing to client 15 from remote buffer
[13:17:59.595][5] sending 301 bytes to client
[13:17:59.596][5] client_process in CONNECTED state, fd=15
[13:17:59.596][5] read from client 15 to remote buffer
[13:17:59.596][5] client read returned 381
[13:17:59.596][5] usbmux_remote_process in CONNECTED state
[13:17:59.596][5] usbmux_remote_process: sending 381 bytes to remote (fd 16)
[13:17:59.596][5] remote_process_send
[13:17:59.596][5] remote_process_send: sending 381 to usbmuxd (16)
[13:17:59.596][5] remote_process_send: returned 381
[13:17:59.598][5] usbmux_remote_process in CONNECTED state
[13:17:59.599][5] usbmux_remote_process: read from remote (fd 16) to client buffer
[13:17:59.599][5] usbmux_remote_process: read 331 bytes from remote (fd 16) requested 524288
[13:17:59.599][5] client_process in CONNECTED state, fd=15
[13:17:59.599][5] writing to client 15 from remote buffer
[13:17:59.599][5] sending 331 bytes to client
[13:17:59.601][4] New client on fd 17
[13:17:59.601][5] client_process in CONNECTED state, fd=15
[13:17:59.601][5] read from client 15 to remote buffer
[13:17:59.601][5] client read returned 0
[13:17:59.601][4] Client 15 connection closed
[13:17:59.601][4] Disconnecting client 0x600003580120 fd 15
[13:17:59.602][5] Client 0x600003580120 notifying close on remote 0x7fa6dcf06080
[13:17:59.602][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf06080 fd 16
[13:17:59.604][5] process_recv fd 17
[13:17:59.604][5] process_recv fd 17
[13:17:59.604][5] Client command in fd 17 len 571 ver 1 msg 8 tag 12
[13:17:59.604][5] client_command: Message is Connect client fd 17
[13:17:59.604][5] Client 17 connection request to device 16777217 port 62078
[13:17:59.606][1] 10.0.2.2:5000 is open
[13:17:59.606][4] New Remote fd 15
[13:17:59.606][5] remote_send_pkt fd 15 tag 0 msg 8 payload_length 548
[13:17:59.606][5] remote_process_send
[13:17:59.606][5] remote_process_send: sending 564 to usbmuxd (15)
[13:17:59.607][5] remote_process_send: returned 564
[13:17:59.609][5] remote_process_recv
[13:17:59.609][5] usbmux_remote_process in CONNECTED state
[13:17:59.609][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.609][5] usbmux_remote_process: read 297 bytes from remote (fd 14) requested 524288
[13:17:59.609][5] remote_process_recv
[13:17:59.609][5] remote_handle_command_result fd 15 len 294 ver 1 msg 8 tag 0
[13:17:59.609][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.609][5] send_pkt fd 17 tag 12 msg 8 payload_length 278
[13:17:59.609][5] Remote 15 switching to CONNECTED state
[13:17:59.609][5] client_process in CONNECTED state, fd=13
[13:17:59.609][5] writing to client 13 from remote buffer
[13:17:59.610][5] sending 297 bytes to client
[13:17:59.610][5] process_send
[13:17:59.610][5] process_send: sent 294 (of 294)
[13:17:59.610][5] Client 17 switching to CONNECTED state, remote 15
[13:17:59.610][5] usbmux_remote_process in CONNECTED state
[13:17:59.610][5] usbmux_remote_process: sending 0 bytes to remote (fd 15)
[13:17:59.610][5] remote_process_send
[13:17:59.610][5] Remote 15 OUT process but nothing to send?
[13:17:59.611][4] New client on fd 16
[13:17:59.611][5] client_process in CONNECTED state, fd=17
[13:17:59.611][5] read from client 17 to remote buffer
[13:17:59.611][5] client read returned 333
[13:17:59.611][5] process_recv fd 16
[13:17:59.611][5] usbmux_remote_process in CONNECTED state
[13:17:59.611][5] usbmux_remote_process: sending 333 bytes to remote (fd 15)
[13:17:59.611][5] remote_process_send
[13:17:59.611][5] remote_process_send: sending 333 to usbmuxd (15)
[13:17:59.611][5] remote_process_send: returned 333
[13:17:59.611][5] process_recv fd 16
[13:17:59.613][5] Client command in fd 16 len 473 ver 1 msg 8 tag 4
[13:17:59.613][5] client_command: Message is ReadBUID client fd 16
[13:17:59.615][1] 10.0.2.2:5000 is open
[13:17:59.615][4] New Remote fd 18
[13:17:59.615][5] remote_send_pkt fd 18 tag 4 msg 8 payload_length 466
[13:17:59.615][5] usbmux_remote_process in CONNECTED state
[13:17:59.615][5] usbmux_remote_process: read from remote (fd 15) to client buffer
[13:17:59.615][5] usbmux_remote_process: read 301 bytes from remote (fd 15) requested 524288
[13:17:59.615][5] remote_process_send
[13:17:59.615][5] remote_process_send: sending 482 to usbmuxd (18)
[13:17:59.617][5] remote_process_send: returned 482
[13:17:59.618][5] client_process in CONNECTED state, fd=17
[13:17:59.618][5] writing to client 17 from remote buffer
[13:17:59.618][5] sending 301 bytes to client
[13:17:59.618][5] remote_process_recv
[13:17:59.618][5] remote_process_recv
[13:17:59.618][5] remote_handle_command_result fd 18 len 276 ver 1 msg 8 tag 4
[13:17:59.618][5] send_pkt_raw fd 16 buffer_length 16
[13:17:59.618][5] send_pkt_raw fd 16 buffer_length 260
[13:17:59.618][5] process_send
[13:17:59.618][5] process_send: sent 276 (of 276)
[13:17:59.621][4] New client on fd 19
[13:17:59.621][5] process_recv fd 16
[13:17:59.621][4] Client 16 connection closed
[13:17:59.621][4] Disconnecting client 0x600003580120 fd 16
[13:17:59.622][5] Client 0x600003580120 notifying close on remote 0x7fa6dcf061c0
[13:17:59.622][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf061c0 fd 18
[13:17:59.623][5] client_process in CONNECTED state, fd=17
[13:17:59.623][5] read from client 17 to remote buffer
[13:17:59.623][5] client read returned 378
[13:17:59.623][5] process_recv fd 19
[13:17:59.623][5] usbmux_remote_process in CONNECTED state
[13:17:59.623][5] usbmux_remote_process: sending 378 bytes to remote (fd 15)
[13:17:59.623][5] remote_process_send
[13:17:59.623][5] remote_process_send: sending 378 to usbmuxd (15)
[13:17:59.623][5] remote_process_send: returned 378
[13:17:59.624][5] process_recv fd 19
[13:17:59.624][5] Client command in fd 19 len 548 ver 1 msg 8 tag 5
[13:17:59.624][5] client_command: Message is ReadPairRecord client fd 19
[13:17:59.625][1] 10.0.2.2:5000 is open
[13:17:59.625][4] New Remote fd 16
[13:17:59.625][5] remote_send_pkt fd 16 tag 5 msg 8 payload_length 541
[13:17:59.625][5] remote_process_send
[13:17:59.626][5] remote_process_send: sending 557 to usbmuxd (16)
[13:17:59.626][5] remote_process_send: returned 557
[13:17:59.627][5] usbmux_remote_process in CONNECTED state
[13:17:59.627][5] usbmux_remote_process: read from remote (fd 15) to client buffer
[13:17:59.627][5] usbmux_remote_process: read 4 bytes from remote (fd 15) requested 524288
[13:17:59.627][5] client_process in CONNECTED state, fd=17
[13:17:59.627][5] writing to client 17 from remote buffer
[13:17:59.627][5] sending 4 bytes to client
[13:17:59.627][5] remote_process_recv
[13:17:59.628][5] remote_process_recv
[13:17:59.628][5] remote_handle_command_result fd 16 len 13154 ver 1 msg 8 tag 5
[13:17:59.628][5] send_pkt_raw fd 19 buffer_length 16
[13:17:59.628][5] send_pkt_raw fd 19 buffer_length 13138
[13:17:59.628][5] process_send
[13:17:59.628][5] process_send: sent 8192 (of 13154)
[13:17:59.629][5] process_send
[13:17:59.630][5] process_send: sent 4962 (of 4962)
[13:17:59.630][5] client_process in CONNECTED state, fd=13
[13:17:59.630][5] read from client 13 to remote buffer
[13:17:59.630][5] client read returned 488
[13:17:59.630][5] process_recv fd 19
[13:17:59.630][4] Client 19 connection closed
[13:17:59.630][4] Disconnecting client 0x600003580300 fd 19
[13:17:59.630][5] Client 0x600003580300 notifying close on remote 0x7fa6dcf061c0
[13:17:59.630][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf061c0 fd 16
[13:17:59.631][5] usbmux_remote_process in CONNECTED state
[13:17:59.631][5] usbmux_remote_process: sending 488 bytes to remote (fd 14)
[13:17:59.631][5] remote_process_send
[13:17:59.631][5] remote_process_send: sending 488 to usbmuxd (14)
[13:17:59.631][5] remote_process_send: returned 488
[13:17:59.638][5] usbmux_remote_process in CONNECTED state
[13:17:59.638][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.638][5] usbmux_remote_process: read 358 bytes from remote (fd 14) requested 524288
[13:17:59.639][5] client_process in CONNECTED state, fd=13
[13:17:59.639][5] writing to client 13 from remote buffer
[13:17:59.639][5] sending 358 bytes to client
[13:17:59.641][4] New client on fd 16
[13:17:59.641][5] process_recv fd 16
[13:17:59.644][5] process_recv fd 16
[13:17:59.644][5] Client command in fd 16 len 571 ver 1 msg 8 tag 6
[13:17:59.644][5] client_command: Message is Connect client fd 16
[13:17:59.644][5] Client 16 connection request to device 16777217 port 62078
[13:17:59.645][1] 10.0.2.2:5000 is open
[13:17:59.645][4] New Remote fd 18
[13:17:59.645][5] remote_send_pkt fd 18 tag 0 msg 8 payload_length 548
[13:17:59.645][5] remote_process_send
[13:17:59.645][5] remote_process_send: sending 564 to usbmuxd (18)
[13:17:59.645][5] remote_process_send: returned 564
[13:17:59.647][5] remote_process_recv
[13:17:59.647][5] remote_process_recv
[13:17:59.647][5] remote_handle_command_result fd 18 len 294 ver 1 msg 8 tag 0
[13:17:59.647][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.647][5] send_pkt fd 16 tag 6 msg 8 payload_length 278
[13:17:59.647][5] Remote 18 switching to CONNECTED state
[13:17:59.647][5] process_send
[13:17:59.647][5] process_send: sent 294 (of 294)
[13:17:59.647][5] Client 16 switching to CONNECTED state, remote 18
[13:17:59.647][5] usbmux_remote_process in CONNECTED state
[13:17:59.647][5] usbmux_remote_process: sending 0 bytes to remote (fd 18)
[13:17:59.647][5] remote_process_send
[13:17:59.647][5] Remote 18 OUT process but nothing to send?
[13:17:59.648][5] client_process in CONNECTED state, fd=16
[13:17:59.648][5] read from client 16 to remote buffer
[13:17:59.648][5] client read returned 333
[13:17:59.648][5] usbmux_remote_process in CONNECTED state
[13:17:59.648][5] usbmux_remote_process: sending 333 bytes to remote (fd 18)
[13:17:59.648][5] remote_process_send
[13:17:59.648][5] remote_process_send: sending 333 to usbmuxd (18)
[13:17:59.649][5] remote_process_send: returned 333
[13:17:59.654][5] usbmux_remote_process in CONNECTED state
[13:17:59.654][5] usbmux_remote_process: read from remote (fd 18) to client buffer
[13:17:59.654][5] usbmux_remote_process: read 301 bytes from remote (fd 18) requested 524288
[13:17:59.654][5] client_process in CONNECTED state, fd=16
[13:17:59.654][5] writing to client 16 from remote buffer
[13:17:59.654][5] sending 301 bytes to client
[13:17:59.655][5] client_process in CONNECTED state, fd=16
[13:17:59.655][5] read from client 16 to remote buffer
[13:17:59.655][5] client read returned 381
[13:17:59.655][5] usbmux_remote_process in CONNECTED state
[13:17:59.655][5] usbmux_remote_process: sending 381 bytes to remote (fd 18)
[13:17:59.655][5] remote_process_send
[13:17:59.655][5] remote_process_send: sending 381 to usbmuxd (18)
[13:17:59.657][5] remote_process_send: returned 381
[13:17:59.682][5] usbmux_remote_process in CONNECTED state
[13:17:59.682][5] usbmux_remote_process: read from remote (fd 15) to client buffer
[13:17:59.682][5] usbmux_remote_process: read 327 bytes from remote (fd 15) requested 524288
[13:17:59.682][5] usbmux_remote_process in CONNECTED state
[13:17:59.682][5] usbmux_remote_process: read from remote (fd 18) to client buffer
[13:17:59.682][5] usbmux_remote_process: read 331 bytes from remote (fd 18) requested 524288
[13:17:59.682][5] client_process in CONNECTED state, fd=16
[13:17:59.682][5] writing to client 16 from remote buffer
[13:17:59.682][5] sending 331 bytes to client
[13:17:59.682][5] client_process in CONNECTED state, fd=17
[13:17:59.682][5] writing to client 17 from remote buffer
[13:17:59.682][5] sending 327 bytes to client
[13:17:59.684][4] New client on fd 19
[13:17:59.684][5] client_process in CONNECTED state, fd=10
[13:17:59.684][5] read from client 10 to remote buffer
[13:17:59.684][5] client read returned 318
[13:17:59.684][5] client_process in CONNECTED state, fd=16
[13:17:59.684][5] read from client 16 to remote buffer
[13:17:59.684][5] client read returned 0
[13:17:59.684][4] Client 16 connection closed
[13:17:59.684][4] Disconnecting client 0x600003584120 fd 16
[13:17:59.685][5] Client 0x600003584120 notifying close on remote 0x7fa6dcf061c0
[13:17:59.685][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf061c0 fd 18
[13:17:59.687][5] client_process in CONNECTED state, fd=17
[13:17:59.687][5] read from client 17 to remote buffer
[13:17:59.687][5] client read returned 0
[13:17:59.687][4] Client 17 connection closed
[13:17:59.687][4] Disconnecting client 0x600003580240 fd 17
[13:17:59.688][5] Client 0x600003580240 notifying close on remote 0x7fa6dcf06080
[13:17:59.688][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf06080 fd 15
[13:17:59.688][5] process_recv fd 19
[13:17:59.689][5] usbmux_remote_process in CONNECTED state
[13:17:59.689][5] usbmux_remote_process: sending 318 bytes to remote (fd 11)
[13:17:59.689][5] remote_process_send
[13:17:59.689][5] remote_process_send: sending 318 to usbmuxd (11)
[13:17:59.689][5] remote_process_send: returned 318
[13:17:59.689][5] process_recv fd 19
[13:17:59.689][5] Client command in fd 19 len 571 ver 1 msg 8 tag 7
[13:17:59.689][5] client_command: Message is Connect client fd 19
[13:17:59.689][5] Client 19 connection request to device 16777217 port 62078
[13:17:59.690][1] 10.0.2.2:5000 is open
[13:17:59.690][4] New Remote fd 15
[13:17:59.690][5] remote_send_pkt fd 15 tag 0 msg 8 payload_length 548
[13:17:59.690][5] remote_process_send
[13:17:59.690][5] remote_process_send: sending 564 to usbmuxd (15)
[13:17:59.691][5] remote_process_send: returned 564
[13:17:59.692][5] remote_process_recv
[13:17:59.692][5] remote_process_recv
[13:17:59.692][5] remote_handle_command_result fd 15 len 294 ver 1 msg 8 tag 0
[13:17:59.692][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.692][5] send_pkt fd 19 tag 7 msg 8 payload_length 278
[13:17:59.693][5] Remote 15 switching to CONNECTED state
[13:17:59.693][5] process_send
[13:17:59.693][5] process_send: sent 294 (of 294)
[13:17:59.693][5] Client 19 switching to CONNECTED state, remote 15
[13:17:59.693][5] usbmux_remote_process in CONNECTED state
[13:17:59.693][5] usbmux_remote_process: sending 0 bytes to remote (fd 15)
[13:17:59.693][5] remote_process_send
[13:17:59.693][5] Remote 15 OUT process but nothing to send?
[13:17:59.696][5] client_process in CONNECTED state, fd=19
[13:17:59.696][5] read from client 19 to remote buffer
[13:17:59.696][5] client read returned 333
[13:17:59.696][5] usbmux_remote_process in CONNECTED state
[13:17:59.696][5] usbmux_remote_process: sending 333 bytes to remote (fd 15)
[13:17:59.697][5] remote_process_send
[13:17:59.697][5] remote_process_send: sending 333 to usbmuxd (15)
[13:17:59.697][5] remote_process_send: returned 333
[13:17:59.699][5] usbmux_remote_process in CONNECTED state
[13:17:59.699][5] usbmux_remote_process: read from remote (fd 15) to client buffer
[13:17:59.710][5] usbmux_remote_process: read 4 bytes from remote (fd 15) requested 524288
[13:17:59.710][5] client_process in CONNECTED state, fd=19
[13:17:59.710][5] writing to client 19 from remote buffer
[13:17:59.710][5] sending 4 bytes to client
[13:17:59.719][5] usbmux_remote_process in CONNECTED state
[13:17:59.719][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.720][5] usbmux_remote_process: read 1250 bytes from remote (fd 11) requested 524288
[13:17:59.720][5] client_process in CONNECTED state, fd=10
[13:17:59.720][5] writing to client 10 from remote buffer
[13:17:59.720][5] sending 1250 bytes to client
[13:17:59.746][5] usbmux_remote_process in CONNECTED state
[13:17:59.746][5] usbmux_remote_process: read from remote (fd 15) to client buffer
[13:17:59.746][5] usbmux_remote_process: read 297 bytes from remote (fd 15) requested 524288
[13:17:59.746][5] client_process in CONNECTED state, fd=19
[13:17:59.746][5] writing to client 19 from remote buffer
[13:17:59.746][5] sending 297 bytes to client
[13:17:59.747][5] client_process in CONNECTED state, fd=10
[13:17:59.747][5] read from client 10 to remote buffer
[13:17:59.747][5] client read returned 1149
[13:17:59.747][5] client_process in CONNECTED state, fd=19
[13:17:59.747][5] read from client 19 to remote buffer
[13:17:59.747][5] client read returned 378
[13:17:59.747][5] usbmux_remote_process in CONNECTED state
[13:17:59.747][5] usbmux_remote_process: sending 1149 bytes to remote (fd 11)
[13:17:59.747][5] remote_process_send
[13:17:59.747][5] remote_process_send: sending 1149 to usbmuxd (11)
[13:17:59.747][5] remote_process_send: returned 1149
[13:17:59.748][5] usbmux_remote_process in CONNECTED state
[13:17:59.748][5] usbmux_remote_process: sending 378 bytes to remote (fd 15)
[13:17:59.748][5] remote_process_send
[13:17:59.748][5] remote_process_send: sending 378 to usbmuxd (15)
[13:17:59.748][5] remote_process_send: returned 378
[13:17:59.757][5] usbmux_remote_process in CONNECTED state
[13:17:59.758][5] usbmux_remote_process: read from remote (fd 15) to client buffer
[13:17:59.758][5] usbmux_remote_process: read 331 bytes from remote (fd 15) requested 524288
[13:17:59.759][5] client_process in CONNECTED state, fd=19
[13:17:59.759][5] writing to client 19 from remote buffer
[13:17:59.759][5] sending 331 bytes to client
[13:17:59.759][5] client_process in CONNECTED state, fd=13
[13:17:59.760][5] read from client 13 to remote buffer
[13:17:59.760][5] client read returned 318
[13:17:59.760][5] client_process in CONNECTED state, fd=19
[13:17:59.760][5] read from client 19 to remote buffer
[13:17:59.760][5] client read returned 0
[13:17:59.760][4] Client 19 connection closed
[13:17:59.760][4] Disconnecting client 0x6000035840c0 fd 19
[13:17:59.760][5] Client 0x6000035840c0 notifying close on remote 0x7fa6dcf06080
[13:17:59.760][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf06080 fd 15
[13:17:59.761][5] usbmux_remote_process in CONNECTED state
[13:17:59.761][5] usbmux_remote_process: sending 318 bytes to remote (fd 14)
[13:17:59.761][5] remote_process_send
[13:17:59.761][5] remote_process_send: sending 318 to usbmuxd (14)
[13:17:59.761][5] remote_process_send: returned 318
[13:17:59.767][5] usbmux_remote_process in CONNECTED state
[13:17:59.767][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.767][5] usbmux_remote_process: read 51 bytes from remote (fd 11) requested 524288
[13:17:59.767][5] client_process in CONNECTED state, fd=10
[13:17:59.767][5] writing to client 10 from remote buffer
[13:17:59.767][5] sending 51 bytes to client
[13:17:59.768][5] client_process in CONNECTED state, fd=10
[13:17:59.768][5] read from client 10 to remote buffer
[13:17:59.768][5] client read returned 458
[13:17:59.768][5] usbmux_remote_process in CONNECTED state
[13:17:59.769][5] usbmux_remote_process: sending 458 bytes to remote (fd 11)
[13:17:59.769][5] remote_process_send
[13:17:59.769][5] remote_process_send: sending 458 to usbmuxd (11)
[13:17:59.769][5] remote_process_send: returned 458
[13:17:59.782][5] usbmux_remote_process in CONNECTED state
[13:17:59.782][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.782][5] usbmux_remote_process: read 446 bytes from remote (fd 11) requested 524288
[13:17:59.782][5] usbmux_remote_process in CONNECTED state
[13:17:59.782][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.782][5] usbmux_remote_process: read 1250 bytes from remote (fd 14) requested 524288
[13:17:59.782][5] client_process in CONNECTED state, fd=10
[13:17:59.782][5] writing to client 10 from remote buffer
[13:17:59.782][5] sending 446 bytes to client
[13:17:59.782][5] client_process in CONNECTED state, fd=13
[13:17:59.782][5] writing to client 13 from remote buffer
[13:17:59.782][5] sending 1250 bytes to client
[13:17:59.787][4] New client on fd 15
[13:17:59.787][5] process_recv fd 15
[13:17:59.787][5] process_recv fd 15
[13:17:59.787][5] Client command in fd 15 len 571 ver 1 msg 8 tag 13
[13:17:59.787][5] client_command: Message is Connect client fd 15
[13:17:59.787][5] Client 15 connection request to device 16777217 port 49218
[13:17:59.788][1] 10.0.2.2:5000 is open
[13:17:59.788][4] New Remote fd 16
[13:17:59.788][5] remote_send_pkt fd 16 tag 0 msg 8 payload_length 548
[13:17:59.788][5] remote_process_send
[13:17:59.788][5] remote_process_send: sending 564 to usbmuxd (16)
[13:17:59.788][5] remote_process_send: returned 564
[13:17:59.790][5] remote_process_recv
[13:17:59.790][5] remote_process_recv
[13:17:59.790][5] remote_handle_command_result fd 16 len 294 ver 1 msg 8 tag 0
[13:17:59.790][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.790][5] send_pkt fd 15 tag 13 msg 8 payload_length 278
[13:17:59.790][5] Remote 16 switching to CONNECTED state
[13:17:59.790][5] process_send
[13:17:59.790][5] process_send: sent 294 (of 294)
[13:17:59.790][5] Client 15 switching to CONNECTED state, remote 16
[13:17:59.790][5] usbmux_remote_process in CONNECTED state
[13:17:59.790][5] usbmux_remote_process: sending 0 bytes to remote (fd 16)
[13:17:59.790][5] remote_process_send
[13:17:59.790][5] Remote 16 OUT process but nothing to send?
[13:17:59.791][4] New client on fd 17
[13:17:59.791][5] process_recv fd 17
[13:17:59.792][5] process_recv fd 17
[13:17:59.792][5] Client command in fd 17 len 473 ver 1 msg 8 tag 14
[13:17:59.792][5] client_command: Message is ReadBUID client fd 17
[13:17:59.793][1] 10.0.2.2:5000 is open
[13:17:59.793][4] New Remote fd 18
[13:17:59.793][5] remote_send_pkt fd 18 tag 14 msg 8 payload_length 466
[13:17:59.793][5] remote_process_send
[13:17:59.793][5] remote_process_send: sending 482 to usbmuxd (18)
[13:17:59.793][5] remote_process_send: returned 482
[13:17:59.794][5] remote_process_recv
[13:17:59.794][5] remote_process_recv
[13:17:59.794][5] remote_handle_command_result fd 18 len 276 ver 1 msg 8 tag 14
[13:17:59.794][5] send_pkt_raw fd 17 buffer_length 16
[13:17:59.794][5] send_pkt_raw fd 17 buffer_length 260
[13:17:59.794][5] process_send
[13:17:59.794][5] process_send: sent 276 (of 276)
[13:17:59.795][4] New client on fd 19
[13:17:59.795][5] process_recv fd 17
[13:17:59.795][4] Client 17 connection closed
[13:17:59.795][4] Disconnecting client 0x600003584120 fd 17
[13:17:59.795][5] Client 0x600003584120 notifying close on remote 0x7fa6dd904480
[13:17:59.795][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 18
[13:17:59.796][5] process_recv fd 19
[13:17:59.796][5] process_recv fd 19
[13:17:59.796][5] Client command in fd 19 len 548 ver 1 msg 8 tag 15
[13:17:59.796][5] client_command: Message is ReadPairRecord client fd 19
[13:17:59.797][1] 10.0.2.2:5000 is open
[13:17:59.797][4] New Remote fd 17
[13:17:59.797][5] remote_send_pkt fd 17 tag 15 msg 8 payload_length 541
[13:17:59.797][5] remote_process_send
[13:17:59.797][5] remote_process_send: sending 557 to usbmuxd (17)
[13:17:59.797][5] remote_process_send: returned 557
[13:17:59.799][5] remote_process_recv
[13:17:59.799][5] remote_process_recv
[13:17:59.799][5] remote_handle_command_result fd 17 len 13154 ver 1 msg 8 tag 15
[13:17:59.799][5] send_pkt_raw fd 19 buffer_length 16
[13:17:59.799][5] send_pkt_raw fd 19 buffer_length 13138
[13:17:59.799][5] process_send
[13:17:59.799][5] process_send: sent 8192 (of 13154)
[13:17:59.808][5] process_send
[13:17:59.808][5] process_send: sent 4962 (of 4962)
[13:17:59.809][4] New client on fd 18
[13:17:59.809][5] process_recv fd 19
[13:17:59.809][4] Client 19 connection closed
[13:17:59.809][4] Disconnecting client 0x600003580240 fd 19
[13:17:59.809][5] Client 0x600003580240 notifying close on remote 0x7fa6dcf06080
[13:17:59.809][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf06080 fd 17
[13:17:59.810][5] process_recv fd 18
[13:17:59.810][5] process_recv fd 18
[13:17:59.810][5] Client command in fd 18 len 571 ver 1 msg 8 tag 16
[13:17:59.810][5] client_command: Message is Connect client fd 18
[13:17:59.810][5] Client 18 connection request to device 16777217 port 62078
[13:17:59.815][1] 10.0.2.2:5000 is open
[13:17:59.815][4] New Remote fd 17
[13:17:59.815][5] remote_send_pkt fd 17 tag 0 msg 8 payload_length 548
[13:17:59.815][5] remote_process_send
[13:17:59.815][5] remote_process_send: sending 564 to usbmuxd (17)
[13:17:59.815][5] remote_process_send: returned 564
[13:17:59.817][5] remote_process_recv
[13:17:59.818][5] remote_process_recv
[13:17:59.818][5] remote_handle_command_result fd 17 len 294 ver 1 msg 8 tag 0
[13:17:59.818][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.818][5] send_pkt fd 18 tag 16 msg 8 payload_length 278
[13:17:59.818][5] Remote 17 switching to CONNECTED state
[13:17:59.818][5] process_send
[13:17:59.818][5] process_send: sent 294 (of 294)
[13:17:59.818][5] Client 18 switching to CONNECTED state, remote 17
[13:17:59.818][5] usbmux_remote_process in CONNECTED state
[13:17:59.818][5] usbmux_remote_process: sending 0 bytes to remote (fd 17)
[13:17:59.818][5] remote_process_send
[13:17:59.818][5] Remote 17 OUT process but nothing to send?
[13:17:59.819][5] client_process in CONNECTED state, fd=18
[13:17:59.819][5] read from client 18 to remote buffer
[13:17:59.819][5] client read returned 333
[13:17:59.819][5] usbmux_remote_process in CONNECTED state
[13:17:59.819][5] usbmux_remote_process: sending 333 bytes to remote (fd 17)
[13:17:59.819][5] remote_process_send
[13:17:59.819][5] remote_process_send: sending 333 to usbmuxd (17)
[13:17:59.819][5] remote_process_send: returned 333
[13:17:59.820][5] usbmux_remote_process in CONNECTED state
[13:17:59.821][5] usbmux_remote_process: read from remote (fd 17) to client buffer
[13:17:59.821][5] usbmux_remote_process: read 301 bytes from remote (fd 17) requested 524288
[13:17:59.821][5] client_process in CONNECTED state, fd=18
[13:17:59.821][5] writing to client 18 from remote buffer
[13:17:59.821][5] sending 301 bytes to client
[13:17:59.821][5] client_process in CONNECTED state, fd=18
[13:17:59.821][5] read from client 18 to remote buffer
[13:17:59.821][5] client read returned 381
[13:17:59.822][5] usbmux_remote_process in CONNECTED state
[13:17:59.822][5] usbmux_remote_process: sending 381 bytes to remote (fd 17)
[13:17:59.822][5] remote_process_send
[13:17:59.822][5] remote_process_send: sending 381 to usbmuxd (17)
[13:17:59.822][5] remote_process_send: returned 381
[13:17:59.824][5] usbmux_remote_process in CONNECTED state
[13:17:59.824][5] usbmux_remote_process: read from remote (fd 17) to client buffer
[13:17:59.824][5] usbmux_remote_process: read 331 bytes from remote (fd 17) requested 524288
[13:17:59.824][5] client_process in CONNECTED state, fd=18
[13:17:59.825][5] writing to client 18 from remote buffer
[13:17:59.825][5] sending 331 bytes to client
[13:17:59.825][4] New client on fd 19
[13:17:59.825][5] client_process in CONNECTED state, fd=18
[13:17:59.825][5] read from client 18 to remote buffer
[13:17:59.826][5] client read returned 0
[13:17:59.826][4] Client 18 connection closed
[13:17:59.826][4] Disconnecting client 0x600003580300 fd 18
[13:17:59.826][5] Client 0x600003580300 notifying close on remote 0x7fa6dd904480
[13:17:59.826][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 17
[13:17:59.827][5] process_recv fd 19
[13:17:59.827][5] process_recv fd 19
[13:17:59.827][5] Client command in fd 19 len 571 ver 1 msg 8 tag 17
[13:17:59.827][5] client_command: Message is Connect client fd 19
[13:17:59.827][5] Client 19 connection request to device 16777217 port 62078
[13:17:59.828][1] 10.0.2.2:5000 is open
[13:17:59.828][4] New Remote fd 17
[13:17:59.828][5] remote_send_pkt fd 17 tag 0 msg 8 payload_length 548
[13:17:59.828][5] remote_process_send
[13:17:59.828][5] remote_process_send: sending 564 to usbmuxd (17)
[13:17:59.829][5] remote_process_send: returned 564
[13:17:59.829][5] remote_process_recv
[13:17:59.830][5] remote_process_recv
[13:17:59.830][5] remote_handle_command_result fd 17 len 294 ver 1 msg 8 tag 0
[13:17:59.830][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.830][5] send_pkt fd 19 tag 17 msg 8 payload_length 278
[13:17:59.830][5] Remote 17 switching to CONNECTED state
[13:17:59.830][5] process_send
[13:17:59.830][5] process_send: sent 294 (of 294)
[13:17:59.830][5] Client 19 switching to CONNECTED state, remote 17
[13:17:59.830][5] usbmux_remote_process in CONNECTED state
[13:17:59.830][5] usbmux_remote_process: sending 0 bytes to remote (fd 17)
[13:17:59.830][5] remote_process_send
[13:17:59.830][5] Remote 17 OUT process but nothing to send?
[13:17:59.831][5] client_process in CONNECTED state, fd=19
[13:17:59.831][5] read from client 19 to remote buffer
[13:17:59.831][5] client read returned 333
[13:17:59.831][5] usbmux_remote_process in CONNECTED state
[13:17:59.831][5] usbmux_remote_process: sending 333 bytes to remote (fd 17)
[13:17:59.831][5] remote_process_send
[13:17:59.831][5] remote_process_send: sending 333 to usbmuxd (17)
[13:17:59.831][5] remote_process_send: returned 333
[13:17:59.833][5] usbmux_remote_process in CONNECTED state
[13:17:59.833][5] usbmux_remote_process: read from remote (fd 17) to client buffer
[13:17:59.833][5] usbmux_remote_process: read 301 bytes from remote (fd 17) requested 524288
[13:17:59.833][5] client_process in CONNECTED state, fd=19
[13:17:59.833][5] writing to client 19 from remote buffer
[13:17:59.833][5] sending 301 bytes to client
[13:17:59.841][5] client_process in CONNECTED state, fd=19
[13:17:59.841][5] read from client 19 to remote buffer
[13:17:59.841][5] client read returned 378
[13:17:59.841][5] usbmux_remote_process in CONNECTED state
[13:17:59.841][5] usbmux_remote_process: sending 378 bytes to remote (fd 17)
[13:17:59.841][5] remote_process_send
[13:17:59.841][5] remote_process_send: sending 378 to usbmuxd (17)
[13:17:59.842][5] remote_process_send: returned 378
[13:17:59.843][5] usbmux_remote_process in CONNECTED state
[13:17:59.843][5] usbmux_remote_process: read from remote (fd 17) to client buffer
[13:17:59.843][5] usbmux_remote_process: read 331 bytes from remote (fd 17) requested 524288
[13:17:59.843][5] client_process in CONNECTED state, fd=19
[13:17:59.843][5] writing to client 19 from remote buffer
[13:17:59.843][5] sending 331 bytes to client
[13:17:59.844][5] client_process in CONNECTED state, fd=15
[13:17:59.844][5] read from client 15 to remote buffer
[13:17:59.844][5] client read returned 318
[13:17:59.844][5] client_process in CONNECTED state, fd=19
[13:17:59.844][5] read from client 19 to remote buffer
[13:17:59.844][5] client read returned 0
[13:17:59.844][4] Client 19 connection closed
[13:17:59.844][4] Disconnecting client 0x600003580240 fd 19
[13:17:59.844][5] Client 0x600003580240 notifying close on remote 0x7fa6dd904480
[13:17:59.844][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 17
[13:17:59.845][5] usbmux_remote_process in CONNECTED state
[13:17:59.845][5] usbmux_remote_process: sending 318 bytes to remote (fd 16)
[13:17:59.845][5] remote_process_send
[13:17:59.845][5] remote_process_send: sending 318 to usbmuxd (16)
[13:17:59.845][5] remote_process_send: returned 318
[13:17:59.879][5] usbmux_remote_process in CONNECTED state
[13:17:59.879][5] usbmux_remote_process: read from remote (fd 16) to client buffer
[13:17:59.879][5] usbmux_remote_process: read 1250 bytes from remote (fd 16) requested 524288
[13:17:59.879][5] client_process in CONNECTED state, fd=15
[13:17:59.879][5] writing to client 15 from remote buffer
[13:17:59.879][5] sending 1250 bytes to client
[13:17:59.918][5] client_process in CONNECTED state, fd=13
[13:17:59.918][5] read from client 13 to remote buffer
[13:17:59.918][5] client read returned 1149
[13:17:59.918][5] usbmux_remote_process in CONNECTED state
[13:17:59.918][5] usbmux_remote_process: sending 1149 bytes to remote (fd 14)
[13:17:59.918][5] remote_process_send
[13:17:59.918][5] remote_process_send: sending 1149 to usbmuxd (14)
[13:17:59.919][5] remote_process_send: returned 1149
[13:17:59.919][5] client_process in CONNECTED state, fd=15
[13:17:59.919][5] read from client 15 to remote buffer
[13:17:59.919][5] client read returned 1136
[13:17:59.919][5] usbmux_remote_process in CONNECTED state
[13:17:59.919][5] usbmux_remote_process: sending 1136 bytes to remote (fd 16)
[13:17:59.919][5] remote_process_send
[13:17:59.919][5] remote_process_send: sending 1136 to usbmuxd (16)
[13:17:59.919][5] remote_process_send: returned 1136
[13:17:59.941][5] usbmux_remote_process in CONNECTED state
[13:17:59.941][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.943][5] usbmux_remote_process: read 51 bytes from remote (fd 14) requested 524288
[13:17:59.943][5] usbmux_remote_process in CONNECTED state
[13:17:59.943][5] usbmux_remote_process: read from remote (fd 16) to client buffer
[13:17:59.943][5] usbmux_remote_process: read 51 bytes from remote (fd 16) requested 524288
[13:17:59.943][5] client_process in CONNECTED state, fd=13
[13:17:59.943][5] writing to client 13 from remote buffer
[13:17:59.943][5] sending 51 bytes to client
[13:17:59.943][5] client_process in CONNECTED state, fd=15
[13:17:59.943][5] writing to client 15 from remote buffer
[13:17:59.943][5] sending 51 bytes to client
[13:17:59.944][5] client_process in CONNECTED state, fd=10
[13:17:59.944][5] read from client 10 to remote buffer
[13:17:59.944][5] client read returned 470
[13:17:59.944][5] client_process in CONNECTED state, fd=13
[13:17:59.945][5] read from client 13 to remote buffer
[13:17:59.945][5] client read returned 439
[13:17:59.945][5] usbmux_remote_process in CONNECTED state
[13:17:59.945][5] usbmux_remote_process: sending 470 bytes to remote (fd 11)
[13:17:59.945][5] remote_process_send
[13:17:59.945][5] remote_process_send: sending 470 to usbmuxd (11)
[13:17:59.945][5] remote_process_send: returned 470
[13:17:59.945][5] usbmux_remote_process in CONNECTED state
[13:17:59.945][5] usbmux_remote_process: sending 439 bytes to remote (fd 14)
[13:17:59.945][5] remote_process_send
[13:17:59.945][5] remote_process_send: sending 439 to usbmuxd (14)
[13:17:59.946][5] remote_process_send: returned 439
[13:17:59.946][5] usbmux_remote_process in CONNECTED state
[13:17:59.947][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.947][5] usbmux_remote_process: read 300 bytes from remote (fd 11) requested 524288
[13:17:59.947][5] client_process in CONNECTED state, fd=10
[13:17:59.947][5] writing to client 10 from remote buffer
[13:17:59.947][5] sending 300 bytes to client
[13:17:59.948][5] usbmux_remote_process in CONNECTED state
[13:17:59.948][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.948][5] usbmux_remote_process: read 389 bytes from remote (fd 14) requested 524288
[13:17:59.948][5] client_process in CONNECTED state, fd=10
[13:17:59.948][5] read from client 10 to remote buffer
[13:17:59.948][5] client read returned 31
[13:17:59.948][5] client_process in CONNECTED state, fd=13
[13:17:59.948][5] writing to client 13 from remote buffer
[13:17:59.948][5] sending 389 bytes to client
[13:17:59.948][5] usbmux_remote_process in CONNECTED state
[13:17:59.948][5] usbmux_remote_process: sending 31 bytes to remote (fd 11)
[13:17:59.948][5] remote_process_send
[13:17:59.948][5] remote_process_send: sending 31 to usbmuxd (11)
[13:17:59.949][5] remote_process_send: returned 31
[13:17:59.949][5] client_process in CONNECTED state, fd=13
[13:17:59.949][5] read from client 13 to remote buffer
[13:17:59.949][5] client read returned 511
[13:17:59.949][5] usbmux_remote_process in CONNECTED state
[13:17:59.949][5] usbmux_remote_process: sending 511 bytes to remote (fd 14)
[13:17:59.950][5] remote_process_send
[13:17:59.950][5] remote_process_send: sending 511 to usbmuxd (14)
[13:17:59.950][5] remote_process_send: returned 511
[13:17:59.950][5] usbmux_remote_process in CONNECTED state
[13:17:59.950][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:17:59.950][5] usbmux_remote_process: read 31 bytes from remote (fd 11) requested 524288
[13:17:59.950][5] client_process in CONNECTED state, fd=10
[13:17:59.950][5] writing to client 10 from remote buffer
[13:17:59.950][5] sending 31 bytes to client
[13:17:59.952][4] New client on fd 17
[13:17:59.952][5] client_process in CONNECTED state, fd=10
[13:17:59.952][5] read from client 10 to remote buffer
[13:17:59.952][5] client read returned 0
[13:17:59.952][4] Client 10 connection closed
[13:17:59.952][4] Disconnecting client 0x600003584060 fd 10
[13:17:59.952][5] Client 0x600003584060 notifying close on remote 0x7fa6dcf05e00
[13:17:59.952][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05e00 fd 11
[13:17:59.953][5] client_process in CONNECTED state, fd=15
[13:17:59.953][5] read from client 15 to remote buffer
[13:17:59.953][5] client read returned 143
[13:17:59.953][5] usbmux_remote_process in CONNECTED state
[13:17:59.953][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.953][5] usbmux_remote_process: read 445 bytes from remote (fd 14) requested 524288
[13:17:59.953][5] client_process in CONNECTED state, fd=13
[13:17:59.953][5] writing to client 13 from remote buffer
[13:17:59.953][5] sending 445 bytes to client
[13:17:59.953][5] process_recv fd 17
[13:17:59.959][5] usbmux_remote_process in CONNECTED state
[13:17:59.959][5] usbmux_remote_process: sending 143 bytes to remote (fd 16)
[13:17:59.960][5] remote_process_send
[13:17:59.960][5] remote_process_send: sending 143 to usbmuxd (16)
[13:17:59.960][5] remote_process_send: returned 143
[13:17:59.960][5] client_process in CONNECTED state, fd=13
[13:17:59.960][5] read from client 13 to remote buffer
[13:17:59.960][5] client read returned 470
[13:17:59.960][5] process_recv fd 17
[13:17:59.960][5] Client command in fd 17 len 571 ver 1 msg 8 tag 18
[13:17:59.960][5] client_command: Message is Connect client fd 17
[13:17:59.960][5] Client 17 connection request to device 16777217 port 62078
[13:17:59.961][1] 10.0.2.2:5000 is open
[13:17:59.961][4] New Remote fd 10
[13:17:59.961][5] remote_send_pkt fd 10 tag 0 msg 8 payload_length 548
[13:17:59.962][5] remote_process_send
[13:17:59.962][5] remote_process_send: sending 564 to usbmuxd (10)
[13:17:59.962][5] remote_process_send: returned 564
[13:17:59.962][5] usbmux_remote_process in CONNECTED state
[13:17:59.962][5] usbmux_remote_process: sending 470 bytes to remote (fd 14)
[13:17:59.962][5] remote_process_send
[13:17:59.962][5] remote_process_send: sending 470 to usbmuxd (14)
[13:17:59.962][5] remote_process_send: returned 470
[13:17:59.963][5] remote_process_recv
[13:17:59.963][5] remote_process_recv
[13:17:59.964][5] remote_handle_command_result fd 10 len 294 ver 1 msg 8 tag 0
[13:17:59.964][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:17:59.964][5] send_pkt fd 17 tag 18 msg 8 payload_length 278
[13:17:59.964][5] Remote 10 switching to CONNECTED state
[13:17:59.964][5] process_send
[13:17:59.965][5] process_send: sent 294 (of 294)
[13:17:59.965][5] Client 17 switching to CONNECTED state, remote 10
[13:17:59.965][5] usbmux_remote_process in CONNECTED state
[13:17:59.965][5] usbmux_remote_process: sending 0 bytes to remote (fd 10)
[13:17:59.965][5] remote_process_send
[13:17:59.965][5] Remote 10 OUT process but nothing to send?
[13:17:59.965][5] usbmux_remote_process in CONNECTED state
[13:17:59.974][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:17:59.975][5] usbmux_remote_process: read 33 bytes from remote (fd 14) requested 524288
[13:17:59.975][5] client_process in CONNECTED state, fd=13
[13:17:59.975][5] writing to client 13 from remote buffer
[13:17:59.975][5] sending 33 bytes to client
[13:17:59.975][5] client_process in CONNECTED state, fd=17
[13:17:59.975][5] read from client 17 to remote buffer
[13:17:59.976][5] client read returned 333
[13:17:59.976][5] usbmux_remote_process in CONNECTED state
[13:17:59.976][5] usbmux_remote_process: sending 333 bytes to remote (fd 10)
[13:17:59.976][5] remote_process_send
[13:17:59.976][5] remote_process_send: sending 333 to usbmuxd (10)
[13:17:59.976][5] remote_process_send: returned 333
[13:17:59.978][5] usbmux_remote_process in CONNECTED state
[13:17:59.978][5] usbmux_remote_process: read from remote (fd 10) to client buffer
[13:17:59.978][5] usbmux_remote_process: read 301 bytes from remote (fd 10) requested 524288
[13:17:59.978][5] client_process in CONNECTED state, fd=17
[13:17:59.978][5] writing to client 17 from remote buffer
[13:17:59.978][5] sending 301 bytes to client
[13:17:59.979][5] client_process in CONNECTED state, fd=17
[13:17:59.979][5] read from client 17 to remote buffer
[13:17:59.979][5] client read returned 381
[13:17:59.980][5] usbmux_remote_process in CONNECTED state
[13:17:59.980][5] usbmux_remote_process: sending 381 bytes to remote (fd 10)
[13:17:59.980][5] remote_process_send
[13:17:59.980][5] remote_process_send: sending 381 to usbmuxd (10)
[13:17:59.980][5] remote_process_send: returned 381
[13:17:59.981][5] usbmux_remote_process in CONNECTED state
[13:17:59.981][5] usbmux_remote_process: read from remote (fd 10) to client buffer
[13:17:59.982][5] usbmux_remote_process: read 331 bytes from remote (fd 10) requested 524288
[13:17:59.983][5] client_process in CONNECTED state, fd=17
[13:17:59.983][5] writing to client 17 from remote buffer
[13:17:59.983][5] sending 331 bytes to client
[13:17:59.984][5] client_process in CONNECTED state, fd=17
[13:17:59.984][5] read from client 17 to remote buffer
[13:17:59.984][5] client read returned 378
[13:17:59.984][5] usbmux_remote_process in CONNECTED state
[13:17:59.984][5] usbmux_remote_process: sending 378 bytes to remote (fd 10)
[13:17:59.984][5] remote_process_send
[13:17:59.984][5] remote_process_send: sending 378 to usbmuxd (10)
[13:17:59.993][5] remote_process_send: returned 378
[13:17:59.993][5] usbmux_remote_process in CONNECTED state
[13:17:59.993][5] usbmux_remote_process: read from remote (fd 10) to client buffer
[13:17:59.993][5] usbmux_remote_process: read 332 bytes from remote (fd 10) requested 524288
[13:17:59.993][5] client_process in CONNECTED state, fd=17
[13:17:59.993][5] writing to client 17 from remote buffer
[13:17:59.993][5] sending 332 bytes to client
[13:17:59.999][5] client_process in CONNECTED state, fd=17
[13:17:59.999][5] read from client 17 to remote buffer
[13:17:59.999][5] client read returned 0
[13:17:59.999][4] Client 17 connection closed
[13:17:59.999][4] Disconnecting client 0x600003584120 fd 17
[13:18:00.013][5] Client 0x600003584120 notifying close on remote 0x7fa6dd904480
[13:18:00.013][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 10
[13:18:00.014][5] usbmux_remote_process in CONNECTED state
[13:18:00.014][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:18:00.014][5] usbmux_remote_process: read 267 bytes from remote (fd 14) requested 524288
[13:18:00.014][5] client_process in CONNECTED state, fd=13
[13:18:00.014][5] writing to client 13 from remote buffer
[13:18:00.014][5] sending 267 bytes to client
[13:18:00.014][5] client_process in CONNECTED state, fd=13
[13:18:00.015][5] read from client 13 to remote buffer
[13:18:00.015][5] client read returned 31
[13:18:00.015][5] usbmux_remote_process in CONNECTED state
[13:18:00.015][5] usbmux_remote_process: sending 31 bytes to remote (fd 14)
[13:18:00.015][5] remote_process_send
[13:18:00.015][5] remote_process_send: sending 31 to usbmuxd (14)
[13:18:00.015][5] remote_process_send: returned 31
[13:18:00.016][5] usbmux_remote_process in CONNECTED state
[13:18:00.016][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:18:00.017][5] usbmux_remote_process: read 31 bytes from remote (fd 14) requested 524288
[13:18:00.017][5] client_process in CONNECTED state, fd=13
[13:18:00.017][5] writing to client 13 from remote buffer
[13:18:00.017][5] sending 31 bytes to client
[13:18:00.018][4] New client on fd 10
[13:18:00.018][5] client_process in CONNECTED state, fd=13
[13:18:00.018][5] read from client 13 to remote buffer
[13:18:00.018][5] client read returned 0
[13:18:00.018][4] Client 13 connection closed
[13:18:00.018][4] Disconnecting client 0x6000035801e0 fd 13
[13:18:00.018][5] Client 0x6000035801e0 notifying close on remote 0x7fa6dcf05f40
[13:18:00.018][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05f40 fd 14
[13:18:00.019][5] process_recv fd 10
[13:18:00.019][5] process_recv fd 10
[13:18:00.019][5] Client command in fd 10 len 571 ver 1 msg 8 tag 8
[13:18:00.019][5] client_command: Message is Connect client fd 10
[13:18:00.019][5] Client 10 connection request to device 16777217 port 62078
[13:18:00.022][1] 10.0.2.2:5000 is open
[13:18:00.022][4] New Remote fd 11
[13:18:00.022][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[13:18:00.023][5] remote_process_send
[13:18:00.023][5] remote_process_send: sending 564 to usbmuxd (11)
[13:18:00.023][5] remote_process_send: returned 564
[13:18:00.024][5] remote_process_recv
[13:18:00.025][5] remote_process_recv
[13:18:00.025][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[13:18:00.025][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:18:00.025][5] send_pkt fd 10 tag 8 msg 8 payload_length 278
[13:18:00.025][5] Remote 11 switching to CONNECTED state
[13:18:00.025][5] process_send
[13:18:00.025][5] process_send: sent 294 (of 294)
[13:18:00.025][5] Client 10 switching to CONNECTED state, remote 11
[13:18:00.025][5] usbmux_remote_process in CONNECTED state
[13:18:00.025][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[13:18:00.025][5] remote_process_send
[13:18:00.025][5] Remote 11 OUT process but nothing to send?
[13:18:00.026][5] client_process in CONNECTED state, fd=10
[13:18:00.026][5] read from client 10 to remote buffer
[13:18:00.026][5] client read returned 333
[13:18:00.026][5] usbmux_remote_process in CONNECTED state
[13:18:00.026][5] usbmux_remote_process: sending 333 bytes to remote (fd 11)
[13:18:00.026][5] remote_process_send
[13:18:00.026][5] remote_process_send: sending 333 to usbmuxd (11)
[13:18:00.026][5] remote_process_send: returned 333
[13:18:00.028][5] usbmux_remote_process in CONNECTED state
[13:18:00.028][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.029][5] usbmux_remote_process: read 301 bytes from remote (fd 11) requested 524288
[13:18:00.029][5] client_process in CONNECTED state, fd=10
[13:18:00.029][5] writing to client 10 from remote buffer
[13:18:00.029][5] sending 301 bytes to client
[13:18:00.029][4] New client on fd 13
[13:18:00.030][5] process_recv fd 13
[13:18:00.030][5] process_recv fd 13
[13:18:00.030][5] Client command in fd 13 len 473 ver 1 msg 8 tag 9
[13:18:00.030][5] client_command: Message is ReadBUID client fd 13
[13:18:00.031][1] 10.0.2.2:5000 is open
[13:18:00.031][4] New Remote fd 14
[13:18:00.031][5] remote_send_pkt fd 14 tag 9 msg 8 payload_length 466
[13:18:00.031][5] remote_process_send
[13:18:00.031][5] remote_process_send: sending 482 to usbmuxd (14)
[13:18:00.031][5] remote_process_send: returned 482
[13:18:00.032][5] remote_process_recv
[13:18:00.039][5] remote_process_recv
[13:18:00.040][5] remote_handle_command_result fd 14 len 276 ver 1 msg 8 tag 9
[13:18:00.040][5] send_pkt_raw fd 13 buffer_length 16
[13:18:00.040][5] send_pkt_raw fd 13 buffer_length 260
[13:18:00.040][5] process_send
[13:18:00.040][5] process_send: sent 276 (of 276)
[13:18:00.041][4] New client on fd 17
[13:18:00.041][5] process_recv fd 13
[13:18:00.041][4] Client 13 connection closed
[13:18:00.041][4] Disconnecting client 0x600003584120 fd 13
[13:18:00.041][5] Client 0x600003584120 notifying close on remote 0x7fa6dcf05f40
[13:18:00.041][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05f40 fd 14
[13:18:00.042][5] process_recv fd 17
[13:18:00.042][5] process_recv fd 17
[13:18:00.042][5] Client command in fd 17 len 548 ver 1 msg 8 tag 10
[13:18:00.042][5] client_command: Message is ReadPairRecord client fd 17
[13:18:00.044][1] 10.0.2.2:5000 is open
[13:18:00.044][4] New Remote fd 13
[13:18:00.044][5] remote_send_pkt fd 13 tag 10 msg 8 payload_length 541
[13:18:00.044][5] remote_process_send
[13:18:00.044][5] remote_process_send: sending 557 to usbmuxd (13)
[13:18:00.045][5] remote_process_send: returned 557
[13:18:00.046][5] remote_process_recv
[13:18:00.046][5] remote_process_recv
[13:18:00.046][5] remote_handle_command_result fd 13 len 13154 ver 1 msg 8 tag 10
[13:18:00.046][5] send_pkt_raw fd 17 buffer_length 16
[13:18:00.046][5] send_pkt_raw fd 17 buffer_length 13138
[13:18:00.047][5] process_send
[13:18:00.047][5] process_send: sent 8192 (of 13154)
[13:18:00.047][5] process_send
[13:18:00.048][5] process_send: sent 4962 (of 4962)
[13:18:00.048][5] client_process in CONNECTED state, fd=10
[13:18:00.048][5] read from client 10 to remote buffer
[13:18:00.049][5] client read returned 488
[13:18:00.049][5] process_recv fd 17
[13:18:00.049][4] Client 17 connection closed
[13:18:00.049][4] Disconnecting client 0x6000035801e0 fd 17
[13:18:00.049][5] Client 0x6000035801e0 notifying close on remote 0x7fa6dcf05f40
[13:18:00.049][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05f40 fd 13
[13:18:00.050][5] usbmux_remote_process in CONNECTED state
[13:18:00.050][5] usbmux_remote_process: sending 488 bytes to remote (fd 11)
[13:18:00.050][5] remote_process_send
[13:18:00.050][5] remote_process_send: sending 488 to usbmuxd (11)
[13:18:00.050][5] remote_process_send: returned 488
[13:18:00.056][5] usbmux_remote_process in CONNECTED state
[13:18:00.056][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.056][5] usbmux_remote_process: read 358 bytes from remote (fd 11) requested 524288
[13:18:00.056][5] client_process in CONNECTED state, fd=10
[13:18:00.056][5] writing to client 10 from remote buffer
[13:18:00.056][5] sending 358 bytes to client
[13:18:00.057][4] New client on fd 13
[13:18:00.058][5] process_recv fd 13
[13:18:00.058][5] process_recv fd 13
[13:18:00.058][5] Client command in fd 13 len 571 ver 1 msg 8 tag 11
[13:18:00.058][5] client_command: Message is Connect client fd 13
[13:18:00.058][5] Client 13 connection request to device 16777217 port 62078
[13:18:00.059][1] 10.0.2.2:5000 is open
[13:18:00.059][4] New Remote fd 14
[13:18:00.059][5] remote_send_pkt fd 14 tag 0 msg 8 payload_length 548
[13:18:00.059][5] remote_process_send
[13:18:00.059][5] remote_process_send: sending 564 to usbmuxd (14)
[13:18:00.059][5] remote_process_send: returned 564
[13:18:00.061][5] remote_process_recv
[13:18:00.061][5] remote_process_recv
[13:18:00.061][5] remote_handle_command_result fd 14 len 294 ver 1 msg 8 tag 0
[13:18:00.061][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:18:00.061][5] send_pkt fd 13 tag 11 msg 8 payload_length 278
[13:18:00.061][5] Remote 14 switching to CONNECTED state
[13:18:00.061][5] process_send
[13:18:00.061][5] process_send: sent 294 (of 294)
[13:18:00.061][5] Client 13 switching to CONNECTED state, remote 14
[13:18:00.061][5] usbmux_remote_process in CONNECTED state
[13:18:00.061][5] usbmux_remote_process: sending 0 bytes to remote (fd 14)
[13:18:00.061][5] remote_process_send
[13:18:00.061][5] Remote 14 OUT process but nothing to send?
[13:18:00.062][5] client_process in CONNECTED state, fd=13
[13:18:00.062][5] read from client 13 to remote buffer
[13:18:00.062][5] client read returned 333
[13:18:00.062][5] usbmux_remote_process in CONNECTED state
[13:18:00.062][5] usbmux_remote_process: sending 333 bytes to remote (fd 14)
[13:18:00.062][5] remote_process_send
[13:18:00.062][5] remote_process_send: sending 333 to usbmuxd (14)
[13:18:00.063][5] remote_process_send: returned 333
[13:18:00.064][5] usbmux_remote_process in CONNECTED state
[13:18:00.064][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:18:00.064][5] usbmux_remote_process: read 301 bytes from remote (fd 14) requested 524288
[13:18:00.064][5] client_process in CONNECTED state, fd=13
[13:18:00.064][5] writing to client 13 from remote buffer
[13:18:00.064][5] sending 301 bytes to client
[13:18:00.065][5] client_process in CONNECTED state, fd=13
[13:18:00.065][5] read from client 13 to remote buffer
[13:18:00.065][5] client read returned 381
[13:18:00.065][5] usbmux_remote_process in CONNECTED state
[13:18:00.065][5] usbmux_remote_process: sending 381 bytes to remote (fd 14)
[13:18:00.065][5] remote_process_send
[13:18:00.065][5] remote_process_send: sending 381 to usbmuxd (14)
[13:18:00.065][5] remote_process_send: returned 381
[13:18:00.080][5] usbmux_remote_process in CONNECTED state
[13:18:00.080][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:18:00.080][5] usbmux_remote_process: read 4 bytes from remote (fd 14) requested 524288
[13:18:00.080][5] client_process in CONNECTED state, fd=13
[13:18:00.080][5] writing to client 13 from remote buffer
[13:18:00.081][5] sending 4 bytes to client
[13:18:00.109][5] usbmux_remote_process in CONNECTED state
[13:18:00.109][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:18:00.109][5] usbmux_remote_process: read 327 bytes from remote (fd 14) requested 524288
[13:18:00.109][5] client_process in CONNECTED state, fd=13
[13:18:00.109][5] writing to client 13 from remote buffer
[13:18:00.109][5] sending 327 bytes to client
[13:18:00.110][4] New client on fd 17
[13:18:00.110][5] client_process in CONNECTED state, fd=13
[13:18:00.110][5] read from client 13 to remote buffer
[13:18:00.110][5] client read returned 0
[13:18:00.111][4] Client 13 connection closed
[13:18:00.111][4] Disconnecting client 0x600003584120 fd 13
[13:18:00.111][5] Client 0x600003584120 notifying close on remote 0x7fa6dd904480
[13:18:00.111][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 14
[13:18:00.111][5] process_recv fd 17
[13:18:00.111][5] process_recv fd 17
[13:18:00.112][5] Client command in fd 17 len 571 ver 1 msg 8 tag 12
[13:18:00.112][5] client_command: Message is Connect client fd 17
[13:18:00.113][5] Client 17 connection request to device 16777217 port 62078
[13:18:00.118][1] 10.0.2.2:5000 is open
[13:18:00.119][4] New Remote fd 13
[13:18:00.119][5] remote_send_pkt fd 13 tag 0 msg 8 payload_length 548
[13:18:00.119][5] remote_process_send
[13:18:00.119][5] remote_process_send: sending 564 to usbmuxd (13)
[13:18:00.119][5] remote_process_send: returned 564
[13:18:00.122][5] remote_process_recv
[13:18:00.123][5] remote_process_recv
[13:18:00.123][5] remote_handle_command_result fd 13 len 294 ver 1 msg 8 tag 0
[13:18:00.123][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:18:00.123][5] send_pkt fd 17 tag 12 msg 8 payload_length 278
[13:18:00.123][5] Remote 13 switching to CONNECTED state
[13:18:00.123][5] process_send
[13:18:00.123][5] process_send: sent 294 (of 294)
[13:18:00.123][5] Client 17 switching to CONNECTED state, remote 13
[13:18:00.123][5] usbmux_remote_process in CONNECTED state
[13:18:00.123][5] usbmux_remote_process: sending 0 bytes to remote (fd 13)
[13:18:00.123][5] remote_process_send
[13:18:00.123][5] Remote 13 OUT process but nothing to send?
[13:18:00.124][5] client_process in CONNECTED state, fd=17
[13:18:00.124][5] read from client 17 to remote buffer
[13:18:00.124][5] client read returned 333
[13:18:00.124][5] usbmux_remote_process in CONNECTED state
[13:18:00.124][5] usbmux_remote_process: sending 333 bytes to remote (fd 13)
[13:18:00.124][5] remote_process_send
[13:18:00.124][5] remote_process_send: sending 333 to usbmuxd (13)
[13:18:00.124][5] remote_process_send: returned 333
[13:18:00.126][5] usbmux_remote_process in CONNECTED state
[13:18:00.126][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[13:18:00.126][5] usbmux_remote_process: read 4 bytes from remote (fd 13) requested 524288
[13:18:00.126][5] client_process in CONNECTED state, fd=17
[13:18:00.126][5] writing to client 17 from remote buffer
[13:18:00.126][5] sending 4 bytes to client
[13:18:00.174][5] usbmux_remote_process in CONNECTED state
[13:18:00.174][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[13:18:00.174][5] usbmux_remote_process: read 297 bytes from remote (fd 13) requested 524288
[13:18:00.174][5] client_process in CONNECTED state, fd=17
[13:18:00.174][5] writing to client 17 from remote buffer
[13:18:00.174][5] sending 297 bytes to client
[13:18:00.175][5] client_process in CONNECTED state, fd=17
[13:18:00.175][5] read from client 17 to remote buffer
[13:18:00.175][5] client read returned 378
[13:18:00.175][5] usbmux_remote_process in CONNECTED state
[13:18:00.175][5] usbmux_remote_process: sending 378 bytes to remote (fd 13)
[13:18:00.175][5] remote_process_send
[13:18:00.175][5] remote_process_send: sending 378 to usbmuxd (13)
[13:18:00.176][5] remote_process_send: returned 378
[13:18:00.182][5] usbmux_remote_process in CONNECTED state
[13:18:00.182][5] usbmux_remote_process: read from remote (fd 13) to client buffer
[13:18:00.182][5] usbmux_remote_process: read 331 bytes from remote (fd 13) requested 524288
[13:18:00.182][5] client_process in CONNECTED state, fd=17
[13:18:00.182][5] writing to client 17 from remote buffer
[13:18:00.182][5] sending 331 bytes to client
[13:18:00.183][5] client_process in CONNECTED state, fd=10
[13:18:00.183][5] read from client 10 to remote buffer
[13:18:00.183][5] client read returned 318
[13:18:00.183][5] client_process in CONNECTED state, fd=17
[13:18:00.183][5] read from client 17 to remote buffer
[13:18:00.183][5] client read returned 0
[13:18:00.184][4] Client 17 connection closed
[13:18:00.184][4] Disconnecting client 0x600003584060 fd 17
[13:18:00.184][5] Client 0x600003584060 notifying close on remote 0x7fa6dd904480
[13:18:00.184][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 13
[13:18:00.185][5] usbmux_remote_process in CONNECTED state
[13:18:00.185][5] usbmux_remote_process: sending 318 bytes to remote (fd 11)
[13:18:00.185][5] remote_process_send
[13:18:00.185][5] remote_process_send: sending 318 to usbmuxd (11)
[13:18:00.185][5] remote_process_send: returned 318
[13:18:00.225][5] usbmux_remote_process in CONNECTED state
[13:18:00.225][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.225][5] usbmux_remote_process: read 1250 bytes from remote (fd 11) requested 524288
[13:18:00.225][5] client_process in CONNECTED state, fd=10
[13:18:00.225][5] writing to client 10 from remote buffer
[13:18:00.225][5] sending 1250 bytes to client
[13:18:00.248][5] client_process in CONNECTED state, fd=10
[13:18:00.248][5] read from client 10 to remote buffer
[13:18:00.248][5] client read returned 1149
[13:18:00.248][5] usbmux_remote_process in CONNECTED state
[13:18:00.248][5] usbmux_remote_process: sending 1149 bytes to remote (fd 11)
[13:18:00.248][5] remote_process_send
[13:18:00.248][5] remote_process_send: sending 1149 to usbmuxd (11)
[13:18:00.248][5] remote_process_send: returned 1149
[13:18:00.265][5] usbmux_remote_process in CONNECTED state
[13:18:00.265][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.266][5] usbmux_remote_process: read 51 bytes from remote (fd 11) requested 524288
[13:18:00.266][5] client_process in CONNECTED state, fd=10
[13:18:00.266][5] writing to client 10 from remote buffer
[13:18:00.266][5] sending 51 bytes to client
[13:18:00.275][5] client_process in CONNECTED state, fd=10
[13:18:00.275][5] read from client 10 to remote buffer
[13:18:00.276][5] client read returned 458
[13:18:00.277][5] usbmux_remote_process in CONNECTED state
[13:18:00.277][5] usbmux_remote_process: sending 458 bytes to remote (fd 11)
[13:18:00.277][5] remote_process_send
[13:18:00.277][5] remote_process_send: sending 458 to usbmuxd (11)
[13:18:00.277][5] remote_process_send: returned 458
[13:18:00.295][5] usbmux_remote_process in CONNECTED state
[13:18:00.295][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.295][5] usbmux_remote_process: read 446 bytes from remote (fd 11) requested 524288
[13:18:00.296][5] client_process in CONNECTED state, fd=10
[13:18:00.296][5] writing to client 10 from remote buffer
[13:18:00.296][5] sending 446 bytes to client
[13:18:00.297][4] New client on fd 13
[13:18:00.297][5] process_recv fd 13
[13:18:00.297][5] process_recv fd 13
[13:18:00.297][5] Client command in fd 13 len 571 ver 1 msg 8 tag 13
[13:18:00.297][5] client_command: Message is Connect client fd 13
[13:18:00.297][5] Client 13 connection request to device 16777217 port 49226
[13:18:00.298][1] 10.0.2.2:5000 is open
[13:18:00.299][4] New Remote fd 14
[13:18:00.299][5] remote_send_pkt fd 14 tag 0 msg 8 payload_length 548
[13:18:00.299][5] remote_process_send
[13:18:00.299][5] remote_process_send: sending 564 to usbmuxd (14)
[13:18:00.299][5] remote_process_send: returned 564
[13:18:00.301][5] remote_process_recv
[13:18:00.301][5] remote_process_recv
[13:18:00.301][5] remote_handle_command_result fd 14 len 294 ver 1 msg 8 tag 0
[13:18:00.301][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:18:00.301][5] send_pkt fd 13 tag 13 msg 8 payload_length 278
[13:18:00.301][5] Remote 14 switching to CONNECTED state
[13:18:00.301][5] process_send
[13:18:00.301][5] process_send: sent 294 (of 294)
[13:18:00.301][5] Client 13 switching to CONNECTED state, remote 14
[13:18:00.302][5] usbmux_remote_process in CONNECTED state
[13:18:00.302][5] usbmux_remote_process: sending 0 bytes to remote (fd 14)
[13:18:00.302][5] remote_process_send
[13:18:00.302][5] Remote 14 OUT process but nothing to send?
[13:18:00.303][4] New client on fd 17
[13:18:00.305][5] process_recv fd 17
[13:18:00.305][5] process_recv fd 17
[13:18:00.305][5] Client command in fd 17 len 473 ver 1 msg 8 tag 14
[13:18:00.305][5] client_command: Message is ReadBUID client fd 17
[13:18:00.306][1] 10.0.2.2:5000 is open
[13:18:00.306][4] New Remote fd 18
[13:18:00.306][5] remote_send_pkt fd 18 tag 14 msg 8 payload_length 466
[13:18:00.306][5] remote_process_send
[13:18:00.306][5] remote_process_send: sending 482 to usbmuxd (18)
[13:18:00.306][5] remote_process_send: returned 482
[13:18:00.307][5] remote_process_recv
[13:18:00.307][5] remote_process_recv
[13:18:00.307][5] remote_handle_command_result fd 18 len 276 ver 1 msg 8 tag 14
[13:18:00.307][5] send_pkt_raw fd 17 buffer_length 16
[13:18:00.307][5] send_pkt_raw fd 17 buffer_length 260
[13:18:00.307][5] process_send
[13:18:00.307][5] process_send: sent 276 (of 276)
[13:18:00.309][4] New client on fd 19
[13:18:00.309][5] process_recv fd 17
[13:18:00.309][4] Client 17 connection closed
[13:18:00.309][4] Disconnecting client 0x600003584060 fd 17
[13:18:00.309][5] Client 0x600003584060 notifying close on remote 0x7fa6dd9045c0
[13:18:00.309][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd9045c0 fd 18
[13:18:00.309][5] process_recv fd 19
[13:18:00.310][5] process_recv fd 19
[13:18:00.310][5] Client command in fd 19 len 548 ver 1 msg 8 tag 15
[13:18:00.310][5] client_command: Message is ReadPairRecord client fd 19
[13:18:00.311][1] 10.0.2.2:5000 is open
[13:18:00.311][4] New Remote fd 17
[13:18:00.311][5] remote_send_pkt fd 17 tag 15 msg 8 payload_length 541
[13:18:00.311][5] remote_process_send
[13:18:00.311][5] remote_process_send: sending 557 to usbmuxd (17)
[13:18:00.311][5] remote_process_send: returned 557
[13:18:00.313][5] remote_process_recv
[13:18:00.313][5] remote_process_recv
[13:18:00.313][5] remote_handle_command_result fd 17 len 13154 ver 1 msg 8 tag 15
[13:18:00.313][5] send_pkt_raw fd 19 buffer_length 16
[13:18:00.313][5] send_pkt_raw fd 19 buffer_length 13138
[13:18:00.313][5] process_send
[13:18:00.313][5] process_send: sent 8192 (of 13154)
[13:18:00.314][5] process_send
[13:18:00.314][5] process_send: sent 4962 (of 4962)
[13:18:00.314][5] process_recv fd 19
[13:18:00.314][4] Client 19 connection closed
[13:18:00.315][4] Disconnecting client 0x600003580300 fd 19
[13:18:00.315][5] Client 0x600003580300 notifying close on remote 0x7fa6dd9045c0
[13:18:00.315][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd9045c0 fd 17
[13:18:00.315][4] New client on fd 17
[13:18:00.316][5] process_recv fd 17
[13:18:00.316][5] process_recv fd 17
[13:18:00.316][5] Client command in fd 17 len 571 ver 1 msg 8 tag 16
[13:18:00.316][5] client_command: Message is Connect client fd 17
[13:18:00.316][5] Client 17 connection request to device 16777217 port 62078
[13:18:00.325][1] 10.0.2.2:5000 is open
[13:18:00.325][4] New Remote fd 18
[13:18:00.325][5] remote_send_pkt fd 18 tag 0 msg 8 payload_length 548
[13:18:00.325][5] remote_process_send
[13:18:00.325][5] remote_process_send: sending 564 to usbmuxd (18)
[13:18:00.326][5] remote_process_send: returned 564
[13:18:00.327][5] remote_process_recv
[13:18:00.327][5] remote_process_recv
[13:18:00.327][5] remote_handle_command_result fd 18 len 294 ver 1 msg 8 tag 0
[13:18:00.327][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:18:00.327][5] send_pkt fd 17 tag 16 msg 8 payload_length 278
[13:18:00.327][5] Remote 18 switching to CONNECTED state
[13:18:00.328][5] process_send
[13:18:00.328][5] process_send: sent 294 (of 294)
[13:18:00.328][5] Client 17 switching to CONNECTED state, remote 18
[13:18:00.328][5] usbmux_remote_process in CONNECTED state
[13:18:00.328][5] usbmux_remote_process: sending 0 bytes to remote (fd 18)
[13:18:00.328][5] remote_process_send
[13:18:00.328][5] Remote 18 OUT process but nothing to send?
[13:18:00.329][5] client_process in CONNECTED state, fd=17
[13:18:00.329][5] read from client 17 to remote buffer
[13:18:00.329][5] client read returned 333
[13:18:00.329][5] usbmux_remote_process in CONNECTED state
[13:18:00.329][5] usbmux_remote_process: sending 333 bytes to remote (fd 18)
[13:18:00.329][5] remote_process_send
[13:18:00.329][5] remote_process_send: sending 333 to usbmuxd (18)
[13:18:00.329][5] remote_process_send: returned 333
[13:18:00.330][5] usbmux_remote_process in CONNECTED state
[13:18:00.330][5] usbmux_remote_process: read from remote (fd 18) to client buffer
[13:18:00.331][5] usbmux_remote_process: read 301 bytes from remote (fd 18) requested 524288
[13:18:00.331][5] client_process in CONNECTED state, fd=17
[13:18:00.331][5] writing to client 17 from remote buffer
[13:18:00.331][5] sending 301 bytes to client
[13:18:00.331][5] client_process in CONNECTED state, fd=17
[13:18:00.331][5] read from client 17 to remote buffer
[13:18:00.331][5] client read returned 381
[13:18:00.331][5] usbmux_remote_process in CONNECTED state
[13:18:00.331][5] usbmux_remote_process: sending 381 bytes to remote (fd 18)
[13:18:00.331][5] remote_process_send
[13:18:00.331][5] remote_process_send: sending 381 to usbmuxd (18)
[13:18:00.332][5] remote_process_send: returned 381
[13:18:00.334][5] usbmux_remote_process in CONNECTED state
[13:18:00.334][5] usbmux_remote_process: read from remote (fd 18) to client buffer
[13:18:00.334][5] usbmux_remote_process: read 331 bytes from remote (fd 18) requested 524288
[13:18:00.334][5] client_process in CONNECTED state, fd=17
[13:18:00.334][5] writing to client 17 from remote buffer
[13:18:00.334][5] sending 331 bytes to client
[13:18:00.335][4] New client on fd 19
[13:18:00.335][5] client_process in CONNECTED state, fd=17
[13:18:00.335][5] read from client 17 to remote buffer
[13:18:00.335][5] client read returned 0
[13:18:00.335][4] Client 17 connection closed
[13:18:00.335][4] Disconnecting client 0x600003584060 fd 17
[13:18:00.335][5] Client 0x600003584060 notifying close on remote 0x7fa6dcf05f40
[13:18:00.335][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05f40 fd 18
[13:18:00.336][5] process_recv fd 19
[13:18:00.336][5] process_recv fd 19
[13:18:00.336][5] Client command in fd 19 len 571 ver 1 msg 8 tag 17
[13:18:00.336][5] client_command: Message is Connect client fd 19
[13:18:00.336][5] Client 19 connection request to device 16777217 port 62078
[13:18:00.344][1] 10.0.2.2:5000 is open
[13:18:00.344][4] New Remote fd 17
[13:18:00.345][5] remote_send_pkt fd 17 tag 0 msg 8 payload_length 548
[13:18:00.345][5] remote_process_send
[13:18:00.345][5] remote_process_send: sending 564 to usbmuxd (17)
[13:18:00.345][5] remote_process_send: returned 564
[13:18:00.347][5] remote_process_recv
[13:18:00.347][5] remote_process_recv
[13:18:00.347][5] remote_handle_command_result fd 17 len 294 ver 1 msg 8 tag 0
[13:18:00.347][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:18:00.347][5] send_pkt fd 19 tag 17 msg 8 payload_length 278
[13:18:00.347][5] Remote 17 switching to CONNECTED state
[13:18:00.347][5] process_send
[13:18:00.347][5] process_send: sent 294 (of 294)
[13:18:00.347][5] Client 19 switching to CONNECTED state, remote 17
[13:18:00.347][5] usbmux_remote_process in CONNECTED state
[13:18:00.347][5] usbmux_remote_process: sending 0 bytes to remote (fd 17)
[13:18:00.347][5] remote_process_send
[13:18:00.347][5] Remote 17 OUT process but nothing to send?
[13:18:00.348][5] client_process in CONNECTED state, fd=19
[13:18:00.348][5] read from client 19 to remote buffer
[13:18:00.348][5] client read returned 333
[13:18:00.348][5] usbmux_remote_process in CONNECTED state
[13:18:00.348][5] usbmux_remote_process: sending 333 bytes to remote (fd 17)
[13:18:00.348][5] remote_process_send
[13:18:00.349][5] remote_process_send: sending 333 to usbmuxd (17)
[13:18:00.350][5] remote_process_send: returned 333
[13:18:00.358][5] usbmux_remote_process in CONNECTED state
[13:18:00.358][5] usbmux_remote_process: read from remote (fd 17) to client buffer
[13:18:00.358][5] usbmux_remote_process: read 301 bytes from remote (fd 17) requested 524288
[13:18:00.358][5] client_process in CONNECTED state, fd=19
[13:18:00.359][5] writing to client 19 from remote buffer
[13:18:00.359][5] sending 301 bytes to client
[13:18:00.359][5] client_process in CONNECTED state, fd=19
[13:18:00.359][5] read from client 19 to remote buffer
[13:18:00.359][5] client read returned 378
[13:18:00.359][5] usbmux_remote_process in CONNECTED state
[13:18:00.359][5] usbmux_remote_process: sending 378 bytes to remote (fd 17)
[13:18:00.359][5] remote_process_send
[13:18:00.359][5] remote_process_send: sending 378 to usbmuxd (17)
[13:18:00.360][5] remote_process_send: returned 378
[13:18:00.362][5] usbmux_remote_process in CONNECTED state
[13:18:00.362][5] usbmux_remote_process: read from remote (fd 17) to client buffer
[13:18:00.362][5] usbmux_remote_process: read 331 bytes from remote (fd 17) requested 524288
[13:18:00.362][5] client_process in CONNECTED state, fd=19
[13:18:00.362][5] writing to client 19 from remote buffer
[13:18:00.362][5] sending 331 bytes to client
[13:18:00.363][5] client_process in CONNECTED state, fd=13
[13:18:00.363][5] read from client 13 to remote buffer
[13:18:00.363][5] client read returned 318
[13:18:00.363][5] client_process in CONNECTED state, fd=19
[13:18:00.363][5] read from client 19 to remote buffer
[13:18:00.363][5] client read returned 0
[13:18:00.363][4] Client 19 connection closed
[13:18:00.363][4] Disconnecting client 0x600003584120 fd 19
[13:18:00.363][5] Client 0x600003584120 notifying close on remote 0x7fa6dcf05f40
[13:18:00.363][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05f40 fd 17
[13:18:00.364][5] usbmux_remote_process in CONNECTED state
[13:18:00.364][5] usbmux_remote_process: sending 318 bytes to remote (fd 14)
[13:18:00.364][5] remote_process_send
[13:18:00.364][5] remote_process_send: sending 318 to usbmuxd (14)
[13:18:00.364][5] remote_process_send: returned 318
[13:18:00.396][5] usbmux_remote_process in CONNECTED state
[13:18:00.396][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:18:00.396][5] usbmux_remote_process: read 1250 bytes from remote (fd 14) requested 524288
[13:18:00.397][5] client_process in CONNECTED state, fd=13
[13:18:00.397][5] writing to client 13 from remote buffer
[13:18:00.397][5] sending 1250 bytes to client
[13:18:00.416][5] client_process in CONNECTED state, fd=13
[13:18:00.416][5] read from client 13 to remote buffer
[13:18:00.416][5] client read returned 1136
[13:18:00.416][5] usbmux_remote_process in CONNECTED state
[13:18:00.416][5] usbmux_remote_process: sending 1136 bytes to remote (fd 14)
[13:18:00.416][5] remote_process_send
[13:18:00.416][5] remote_process_send: sending 1136 to usbmuxd (14)
[13:18:00.417][5] remote_process_send: returned 1136
[13:18:00.429][5] usbmux_remote_process in CONNECTED state
[13:18:00.429][5] usbmux_remote_process: read from remote (fd 14) to client buffer
[13:18:00.429][5] usbmux_remote_process: read 51 bytes from remote (fd 14) requested 524288
[13:18:00.429][5] client_process in CONNECTED state, fd=13
[13:18:00.429][5] writing to client 13 from remote buffer
[13:18:00.429][5] sending 51 bytes to client
[13:18:00.430][5] client_process in CONNECTED state, fd=10
[13:18:00.430][5] read from client 10 to remote buffer
[13:18:00.430][5] client read returned 470
[13:18:00.430][5] usbmux_remote_process in CONNECTED state
[13:18:00.430][5] usbmux_remote_process: sending 470 bytes to remote (fd 11)
[13:18:00.430][5] remote_process_send
[13:18:00.430][5] remote_process_send: sending 470 to usbmuxd (11)
[13:18:00.430][5] remote_process_send: returned 470
[13:18:00.432][5] usbmux_remote_process in CONNECTED state
[13:18:00.432][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.432][5] usbmux_remote_process: read 300 bytes from remote (fd 11) requested 524288
[13:18:00.432][5] client_process in CONNECTED state, fd=10
[13:18:00.432][5] writing to client 10 from remote buffer
[13:18:00.432][5] sending 300 bytes to client
[13:18:00.435][5] client_process in CONNECTED state, fd=10
[13:18:00.435][5] read from client 10 to remote buffer
[13:18:00.435][5] client read returned 31
[13:18:00.436][5] usbmux_remote_process in CONNECTED state
[13:18:00.436][5] usbmux_remote_process: sending 31 bytes to remote (fd 11)
[13:18:00.436][5] remote_process_send
[13:18:00.436][5] remote_process_send: sending 31 to usbmuxd (11)
[13:18:00.436][5] remote_process_send: returned 31
[13:18:00.437][5] usbmux_remote_process in CONNECTED state
[13:18:00.438][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.438][5] usbmux_remote_process: read 31 bytes from remote (fd 11) requested 524288
[13:18:00.438][5] client_process in CONNECTED state, fd=10
[13:18:00.438][5] writing to client 10 from remote buffer
[13:18:00.438][5] sending 31 bytes to client
[13:18:00.439][5] client_process in CONNECTED state, fd=10
[13:18:00.439][5] read from client 10 to remote buffer
[13:18:00.439][5] client read returned 0
[13:18:00.439][4] Client 10 connection closed
[13:18:00.439][4] Disconnecting client 0x600003580240 fd 10
[13:18:00.439][5] Client 0x600003580240 notifying close on remote 0x7fa6dcf05e00
[13:18:00.439][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dcf05e00 fd 11
[13:18:00.440][5] client_process in CONNECTED state, fd=13
[13:18:00.440][5] read from client 13 to remote buffer
[13:18:00.440][5] client read returned 143
[13:18:00.440][4] New client on fd 10
[13:18:00.440][5] usbmux_remote_process in CONNECTED state
[13:18:00.440][5] usbmux_remote_process: sending 143 bytes to remote (fd 14)
[13:18:00.440][5] remote_process_send
[13:18:00.440][5] remote_process_send: sending 143 to usbmuxd (14)
[13:18:00.440][5] remote_process_send: returned 143
[13:18:00.441][5] process_recv fd 10
[13:18:00.441][5] process_recv fd 10
[13:18:00.441][5] Client command in fd 10 len 571 ver 1 msg 8 tag 18
[13:18:00.441][5] client_command: Message is Connect client fd 10
[13:18:00.441][5] Client 10 connection request to device 16777217 port 62078
[13:18:00.442][1] 10.0.2.2:5000 is open
[13:18:00.442][4] New Remote fd 11
[13:18:00.442][5] remote_send_pkt fd 11 tag 0 msg 8 payload_length 548
[13:18:00.442][5] remote_process_send
[13:18:00.442][5] remote_process_send: sending 564 to usbmuxd (11)
[13:18:00.442][5] remote_process_send: returned 564
[13:18:00.443][5] remote_process_recv
[13:18:00.444][5] remote_process_recv
[13:18:00.444][5] remote_handle_command_result fd 11 len 294 ver 1 msg 8 tag 0
[13:18:00.444][5] remote_handle_command_result: got result 0 for Connect request from remote
[13:18:00.444][5] send_pkt fd 10 tag 18 msg 8 payload_length 278
[13:18:00.444][5] Remote 11 switching to CONNECTED state
[13:18:00.444][5] process_send
[13:18:00.444][5] process_send: sent 294 (of 294)
[13:18:00.444][5] Client 10 switching to CONNECTED state, remote 11
[13:18:00.444][5] usbmux_remote_process in CONNECTED state
[13:18:00.444][5] usbmux_remote_process: sending 0 bytes to remote (fd 11)
[13:18:00.444][5] remote_process_send
[13:18:00.444][5] Remote 11 OUT process but nothing to send?
[13:18:00.445][5] client_process in CONNECTED state, fd=10
[13:18:00.445][5] read from client 10 to remote buffer
[13:18:00.445][5] client read returned 333
[13:18:00.445][5] usbmux_remote_process in CONNECTED state
[13:18:00.445][5] usbmux_remote_process: sending 333 bytes to remote (fd 11)
[13:18:00.445][5] remote_process_send
[13:18:00.445][5] remote_process_send: sending 333 to usbmuxd (11)
[13:18:00.445][5] remote_process_send: returned 333
[13:18:00.446][5] usbmux_remote_process in CONNECTED state
[13:18:00.446][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.446][5] usbmux_remote_process: read 301 bytes from remote (fd 11) requested 524288
[13:18:00.446][5] client_process in CONNECTED state, fd=10
[13:18:00.446][5] writing to client 10 from remote buffer
[13:18:00.446][5] sending 301 bytes to client
[13:18:00.447][5] client_process in CONNECTED state, fd=10
[13:18:00.447][5] read from client 10 to remote buffer
[13:18:00.447][5] client read returned 381
[13:18:00.447][5] usbmux_remote_process in CONNECTED state
[13:18:00.447][5] usbmux_remote_process: sending 381 bytes to remote (fd 11)
[13:18:00.447][5] remote_process_send
[13:18:00.447][5] remote_process_send: sending 381 to usbmuxd (11)
[13:18:00.448][5] remote_process_send: returned 381
[13:18:00.449][5] usbmux_remote_process in CONNECTED state
[13:18:00.449][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.450][5] usbmux_remote_process: read 331 bytes from remote (fd 11) requested 524288
[13:18:00.450][5] client_process in CONNECTED state, fd=10
[13:18:00.450][5] writing to client 10 from remote buffer
[13:18:00.450][5] sending 331 bytes to client
[13:18:00.458][5] client_process in CONNECTED state, fd=10
[13:18:00.458][5] read from client 10 to remote buffer
[13:18:00.458][5] client read returned 378
[13:18:00.459][5] usbmux_remote_process in CONNECTED state
[13:18:00.459][5] usbmux_remote_process: sending 378 bytes to remote (fd 11)
[13:18:00.459][5] remote_process_send
[13:18:00.459][5] remote_process_send: sending 378 to usbmuxd (11)
[13:18:00.459][5] remote_process_send: returned 378
[13:18:00.461][5] usbmux_remote_process in CONNECTED state
[13:18:00.461][5] usbmux_remote_process: read from remote (fd 11) to client buffer
[13:18:00.461][5] usbmux_remote_process: read 332 bytes from remote (fd 11) requested 524288
[13:18:00.461][5] client_process in CONNECTED state, fd=10
[13:18:00.461][5] writing to client 10 from remote buffer
[13:18:00.462][5] sending 332 bytes to client
[13:18:00.462][5] client_process in CONNECTED state, fd=10
[13:18:00.462][5] read from client 10 to remote buffer
[13:18:00.462][5] client read returned 0
[13:18:00.462][4] Client 10 connection closed
[13:18:00.462][4] Disconnecting client 0x600003580240 fd 10
[13:18:00.463][5] Client 0x600003580240 notifying close on remote 0x7fa6dd9045c0
[13:18:00.463][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd9045c0 fd 11
[13:18:01.621][5] process_recv fd 12
[13:18:01.621][5] Client command in fd 12 len 566 ver 1 msg 8 tag 2
[13:18:01.621][1] Client 12 command received in the wrong state
[13:18:01.621][5] send_pkt fd 12 tag 2 msg 8 payload_length 278
[13:18:01.621][4] Disconnecting client 0x6000035802a0 fd 12
[13:18:01.621][5] client_process in CONNECTED state, fd=13
[13:18:01.621][5] read from client 13 to remote buffer
[13:18:01.621][5] client read returned 0
[13:18:01.621][4] Client 13 connection closed
[13:18:01.621][4] Disconnecting client 0x6000035801e0 fd 13
[13:18:01.621][5] Client 0x6000035801e0 notifying close on remote 0x7fa6dd904480
[13:18:01.621][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904480 fd 14
[13:18:02.625][1] 10.0.2.2:5000 is open
[13:18:04.513][5] process_recv fd 9
[13:18:04.513][5] Client command in fd 9 len 566 ver 1 msg 8 tag 2
[13:18:04.513][1] Client 9 command received in the wrong state
[13:18:04.513][5] send_pkt fd 9 tag 2 msg 8 payload_length 278
[13:18:04.513][4] Disconnecting client 0x600003584000 fd 9
[13:18:04.513][5] client_process in CONNECTED state, fd=15
[13:18:04.513][5] read from client 15 to remote buffer
[13:18:04.513][5] client read returned 0
[13:18:04.513][4] Client 15 connection closed
[13:18:04.513][4] Disconnecting client 0x6000035840c0 fd 15
[13:18:04.513][5] Client 0x6000035840c0 notifying close on remote 0x7fa6dd904340
[13:18:04.514][4] usbmux_remote_dispose: Disconnecting remote 0x7fa6dd904340 fd 16

Homebrew package?

Would be handy if someone create a Homebrew package for usbfluxd, so we could just do brew install usbfluxd. =)

Connect just one iOS device.

Greetings,
I'm seeking for a way to connect just one device to the client side.
Currently, the terminal command "devices id -l" on the client side will print a list of the devices which are connected on my remote server.

Connecting particular gadgets at the client side is my primary goal.

Steps i procedure:

  • On the server, I executed the command:
    sudo socat tcp-listen:5000,fork unix-connect:/var/run/usbmuxd

  • On the client's end the command :
    sudo usbfluxd -f -r IP 10.0.0.2:5000

/opt/libplist/src/plist.c:1236: undefined reference to `fmin'

After installing the dependencies, I can successfully run ./autogen. When running make I get an error around a reference to fmin. Running on Ubuntu 20.10.

mobile@mobileVM:/opt/usbfluxd$ sudo make
make  all-recursive
make[1]: Entering directory '/opt/usbfluxd'
Making all in usbfluxd
make[2]: Entering directory '/opt/usbfluxd/usbfluxd'
  CC       usbfluxd-client.o
  CC       usbfluxd-socket.o
  CC       usbfluxd-usbmux_remote.o
usbmux_remote.c:944:7: warning: no previous declaration for ‘check_remote_func’ [-Wmissing-declarations]
  944 | void *check_remote_func(void* data)
      |       ^~~~~~~~~~~~~~~~~
  CC       usbfluxd-log.o
  CC       usbfluxd-utils.o
  CC       usbfluxd-main.o
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from main.c:30:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
      |   ^~~~~~~
  CCLD     usbfluxd
/usr/bin/ld: /usr/local/lib/libplist-2.0.a(plist.o): in function `plist_real_val_compare':
/opt/libplist/src/plist.c:1236: undefined reference to `fmin'
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:417: usbfluxd] Error 1
make[2]: Leaving directory '/opt/usbfluxd/usbfluxd'
make[1]: *** [Makefile:413: all-recursive] Error 1
make[1]: Leaving directory '/opt/usbfluxd'
make: *** [Makefile:345: all] Error 2

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.