├── .gitignore ├── .gitmodules ├── .travis.scripts └── compile.sh ├── .travis.yml ├── LICENSE ├── Makefile.thirdparty ├── README.md ├── common.h ├── config.m4 ├── php_ext_uv.c ├── php_ext_uv.h ├── src ├── fcall.h ├── fcall_info.h ├── ssl_verify.c ├── ssl_verify.h ├── util.h ├── uv_idle.c ├── uv_idle.h ├── uv_loop.c ├── uv_loop.h ├── uv_loop_resource.h ├── uv_pipe.c ├── uv_pipe.h ├── uv_process.c ├── uv_process.h ├── uv_resolver.c ├── uv_resolver.h ├── uv_signal.c ├── uv_signal.h ├── uv_ssl.c ├── uv_ssl.h ├── uv_ssl_constant.h ├── uv_tcp.c ├── uv_tcp.h ├── uv_timer.c ├── uv_timer.h ├── uv_udp.c ├── uv_udp.h ├── uv_util.c ├── uv_util.h ├── uv_worker.c └── uv_worker.h └── tests ├── cert ├── server.crt └── server.key ├── circular_reference_gc ├── UVIdle.phpt ├── UVPipe.phpt ├── UVResolver.phpt ├── UVSSL_01.phpt ├── UVSSL_02.phpt ├── UVSignal.phpt ├── UVTcp.phpt ├── UVTimer_01.phpt ├── UVTimer_02.phpt └── UVUdp.phpt ├── custom_loop ├── 001.phpt ├── UVIdle.phpt ├── UVPipe.phpt ├── UVResolver.phpt ├── UVSSL_01.phpt ├── UVSSL_02.phpt ├── UVSignal.phpt ├── UVTcp.phpt ├── UVTimer_01.phpt ├── UVTimer_02.phpt └── UVUdp.phpt ├── default_loop ├── UVIdle.phpt ├── UVLoopSingleton.phpt ├── UVPipe.phpt ├── UVResolver.phpt ├── UVSSL_01.phpt ├── UVSSL_02.phpt ├── UVSignal.phpt ├── UVTcp.phpt ├── UVTimer_01.phpt ├── UVTimer_02.phpt └── UVUdp.phpt ├── default_loop_empty ├── UVIdle.phpt ├── UVPipe.phpt ├── UVResolver.phpt ├── UVSSL_01.phpt ├── UVSSL_02.phpt ├── UVSignal.phpt ├── UVTcp.phpt ├── UVTimer_01.phpt ├── UVTimer_02.phpt └── UVUdp.phpt ├── default_loop_null ├── UVIdle.phpt ├── UVPipe.phpt ├── UVResolver.phpt ├── UVSSL_01.phpt ├── UVSSL_02.phpt ├── UVSignal.phpt ├── UVTcp.phpt ├── UVTimer_01.phpt ├── UVTimer_02.phpt └── UVUdp.phpt ├── replace_callback_gc ├── UVIdle.phpt ├── UVPipe.phpt ├── UVPipe_listen_twice.phpt ├── UVSignal.phpt ├── UVTcp.phpt ├── UVTcp_listen_twice.phpt └── UVUdp.phpt └── typecheck ├── UVIdle.phpt ├── UVPipe.phpt ├── UVResolver.phpt ├── UVSSL.phpt ├── UVSignal.phpt ├── UVTcp.phpt ├── UVTimer.phpt ├── UVUdp.phpt └── error_handler.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/.travis.scripts/compile.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.thirdparty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/Makefile.thirdparty -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/README.md -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/common.h -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/config.m4 -------------------------------------------------------------------------------- /php_ext_uv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/php_ext_uv.c -------------------------------------------------------------------------------- /php_ext_uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/php_ext_uv.h -------------------------------------------------------------------------------- /src/fcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/fcall.h -------------------------------------------------------------------------------- /src/fcall_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/fcall_info.h -------------------------------------------------------------------------------- /src/ssl_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/ssl_verify.c -------------------------------------------------------------------------------- /src/ssl_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/ssl_verify.h -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/util.h -------------------------------------------------------------------------------- /src/uv_idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_idle.c -------------------------------------------------------------------------------- /src/uv_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_idle.h -------------------------------------------------------------------------------- /src/uv_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_loop.c -------------------------------------------------------------------------------- /src/uv_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_loop.h -------------------------------------------------------------------------------- /src/uv_loop_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_loop_resource.h -------------------------------------------------------------------------------- /src/uv_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_pipe.c -------------------------------------------------------------------------------- /src/uv_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_pipe.h -------------------------------------------------------------------------------- /src/uv_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_process.c -------------------------------------------------------------------------------- /src/uv_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_process.h -------------------------------------------------------------------------------- /src/uv_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_resolver.c -------------------------------------------------------------------------------- /src/uv_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_resolver.h -------------------------------------------------------------------------------- /src/uv_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_signal.c -------------------------------------------------------------------------------- /src/uv_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_signal.h -------------------------------------------------------------------------------- /src/uv_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_ssl.c -------------------------------------------------------------------------------- /src/uv_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_ssl.h -------------------------------------------------------------------------------- /src/uv_ssl_constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_ssl_constant.h -------------------------------------------------------------------------------- /src/uv_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_tcp.c -------------------------------------------------------------------------------- /src/uv_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_tcp.h -------------------------------------------------------------------------------- /src/uv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_timer.c -------------------------------------------------------------------------------- /src/uv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_timer.h -------------------------------------------------------------------------------- /src/uv_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_udp.c -------------------------------------------------------------------------------- /src/uv_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_udp.h -------------------------------------------------------------------------------- /src/uv_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_util.c -------------------------------------------------------------------------------- /src/uv_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_util.h -------------------------------------------------------------------------------- /src/uv_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_worker.c -------------------------------------------------------------------------------- /src/uv_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/src/uv_worker.h -------------------------------------------------------------------------------- /tests/cert/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/cert/server.crt -------------------------------------------------------------------------------- /tests/cert/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/cert/server.key -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVIdle.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVIdle.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVPipe.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVPipe.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVResolver.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVResolver.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVSSL_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVSSL_01.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVSSL_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVSSL_02.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVSignal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVSignal.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVTcp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVTcp.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVTimer_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVTimer_01.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVTimer_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVTimer_02.phpt -------------------------------------------------------------------------------- /tests/circular_reference_gc/UVUdp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/circular_reference_gc/UVUdp.phpt -------------------------------------------------------------------------------- /tests/custom_loop/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/001.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVIdle.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVIdle.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVPipe.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVPipe.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVResolver.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVResolver.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVSSL_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVSSL_01.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVSSL_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVSSL_02.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVSignal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVSignal.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVTcp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVTcp.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVTimer_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVTimer_01.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVTimer_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVTimer_02.phpt -------------------------------------------------------------------------------- /tests/custom_loop/UVUdp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/custom_loop/UVUdp.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVIdle.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVIdle.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVLoopSingleton.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVLoopSingleton.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVPipe.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVPipe.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVResolver.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVResolver.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVSSL_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVSSL_01.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVSSL_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVSSL_02.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVSignal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVSignal.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVTcp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVTcp.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVTimer_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVTimer_01.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVTimer_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVTimer_02.phpt -------------------------------------------------------------------------------- /tests/default_loop/UVUdp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop/UVUdp.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVIdle.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVIdle.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVPipe.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVPipe.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVResolver.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVResolver.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVSSL_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVSSL_01.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVSSL_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVSSL_02.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVSignal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVSignal.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVTcp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVTcp.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVTimer_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVTimer_01.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVTimer_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVTimer_02.phpt -------------------------------------------------------------------------------- /tests/default_loop_empty/UVUdp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_empty/UVUdp.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVIdle.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVIdle.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVPipe.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVPipe.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVResolver.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVResolver.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVSSL_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVSSL_01.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVSSL_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVSSL_02.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVSignal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVSignal.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVTcp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVTcp.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVTimer_01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVTimer_01.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVTimer_02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVTimer_02.phpt -------------------------------------------------------------------------------- /tests/default_loop_null/UVUdp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/default_loop_null/UVUdp.phpt -------------------------------------------------------------------------------- /tests/replace_callback_gc/UVIdle.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/replace_callback_gc/UVIdle.phpt -------------------------------------------------------------------------------- /tests/replace_callback_gc/UVPipe.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/replace_callback_gc/UVPipe.phpt -------------------------------------------------------------------------------- /tests/replace_callback_gc/UVPipe_listen_twice.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/replace_callback_gc/UVPipe_listen_twice.phpt -------------------------------------------------------------------------------- /tests/replace_callback_gc/UVSignal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/replace_callback_gc/UVSignal.phpt -------------------------------------------------------------------------------- /tests/replace_callback_gc/UVTcp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/replace_callback_gc/UVTcp.phpt -------------------------------------------------------------------------------- /tests/replace_callback_gc/UVTcp_listen_twice.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/replace_callback_gc/UVTcp_listen_twice.phpt -------------------------------------------------------------------------------- /tests/replace_callback_gc/UVUdp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/replace_callback_gc/UVUdp.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVIdle.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVIdle.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVPipe.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVPipe.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVResolver.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVResolver.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVSSL.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVSSL.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVSignal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVSignal.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVTcp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVTcp.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVTimer.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVTimer.phpt -------------------------------------------------------------------------------- /tests/typecheck/UVUdp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/UVUdp.phpt -------------------------------------------------------------------------------- /tests/typecheck/error_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickySu/php_ext_uv/HEAD/tests/typecheck/error_handler.php --------------------------------------------------------------------------------