├── .gitignore ├── LICENSE.md ├── Makefile.am ├── README.md ├── autogen.sh ├── clients.png ├── configure.ac ├── design.md ├── design.png ├── examples ├── Makefile.am ├── README.md ├── dl_client.c ├── wdp_client.html ├── wi_client.c ├── ws_client.html ├── ws_echo1.c ├── ws_echo2.c ├── ws_echo_common.c └── ws_echo_common.h ├── include ├── Makefile.am ├── getline.h ├── ios-webkit-debug-proxy │ ├── device_listener.h │ ├── idevice_ext.h │ ├── ios_webkit_debug_proxy.h │ ├── socket_manager.h │ ├── webinspector.h │ └── websocket.h ├── strcasestr.h ├── strndup.h └── validate_utf8.h ├── overview.png └── src ├── Makefile.am ├── base64.c ├── base64.h ├── char_buffer.c ├── char_buffer.h ├── device_listener.c ├── hash_table.c ├── hash_table.h ├── idevice_ext.c ├── ios_webkit_debug_proxy.c ├── ios_webkit_debug_proxy_main.c ├── port_config.c ├── port_config.h ├── rpc.c ├── rpc.h ├── sha1.c ├── sha1.h ├── socket_manager.c ├── webinspector.c └── websocket.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/autogen.sh -------------------------------------------------------------------------------- /clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/clients.png -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/configure.ac -------------------------------------------------------------------------------- /design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/design.md -------------------------------------------------------------------------------- /design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/design.png -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/dl_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/dl_client.c -------------------------------------------------------------------------------- /examples/wdp_client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/wdp_client.html -------------------------------------------------------------------------------- /examples/wi_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/wi_client.c -------------------------------------------------------------------------------- /examples/ws_client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/ws_client.html -------------------------------------------------------------------------------- /examples/ws_echo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/ws_echo1.c -------------------------------------------------------------------------------- /examples/ws_echo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/ws_echo2.c -------------------------------------------------------------------------------- /examples/ws_echo_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/ws_echo_common.c -------------------------------------------------------------------------------- /examples/ws_echo_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/examples/ws_echo_common.h -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/getline.h -------------------------------------------------------------------------------- /include/ios-webkit-debug-proxy/device_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/ios-webkit-debug-proxy/device_listener.h -------------------------------------------------------------------------------- /include/ios-webkit-debug-proxy/idevice_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/ios-webkit-debug-proxy/idevice_ext.h -------------------------------------------------------------------------------- /include/ios-webkit-debug-proxy/ios_webkit_debug_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/ios-webkit-debug-proxy/ios_webkit_debug_proxy.h -------------------------------------------------------------------------------- /include/ios-webkit-debug-proxy/socket_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/ios-webkit-debug-proxy/socket_manager.h -------------------------------------------------------------------------------- /include/ios-webkit-debug-proxy/webinspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/ios-webkit-debug-proxy/webinspector.h -------------------------------------------------------------------------------- /include/ios-webkit-debug-proxy/websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/ios-webkit-debug-proxy/websocket.h -------------------------------------------------------------------------------- /include/strcasestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/strcasestr.h -------------------------------------------------------------------------------- /include/strndup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/strndup.h -------------------------------------------------------------------------------- /include/validate_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/include/validate_utf8.h -------------------------------------------------------------------------------- /overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/overview.png -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/base64.c -------------------------------------------------------------------------------- /src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/base64.h -------------------------------------------------------------------------------- /src/char_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/char_buffer.c -------------------------------------------------------------------------------- /src/char_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/char_buffer.h -------------------------------------------------------------------------------- /src/device_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/device_listener.c -------------------------------------------------------------------------------- /src/hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/hash_table.c -------------------------------------------------------------------------------- /src/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/hash_table.h -------------------------------------------------------------------------------- /src/idevice_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/idevice_ext.c -------------------------------------------------------------------------------- /src/ios_webkit_debug_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/ios_webkit_debug_proxy.c -------------------------------------------------------------------------------- /src/ios_webkit_debug_proxy_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/ios_webkit_debug_proxy_main.c -------------------------------------------------------------------------------- /src/port_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/port_config.c -------------------------------------------------------------------------------- /src/port_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/port_config.h -------------------------------------------------------------------------------- /src/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/rpc.c -------------------------------------------------------------------------------- /src/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/rpc.h -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/socket_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/socket_manager.c -------------------------------------------------------------------------------- /src/webinspector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/webinspector.c -------------------------------------------------------------------------------- /src/websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ios-webkit-debug-proxy/HEAD/src/websocket.c --------------------------------------------------------------------------------