Searched refs:c (Results 1 – 10 of 10) sorted by relevance
/php-uv/examples/ |
H A D | tcp_bind.php | 18 $c = uv_tcp_init(); variable 19 uv_tcp_connect($c, uv_ip4_addr('0.0.0.0',9999), function($client, $status) {
|
H A D | tcp_bind6.php | 18 $c = uv_tcp_init(); variable 19 uv_tcp_connect($c, uv_ip6_addr('::1',9999), function($client, $stat){
|
/php-uv/tests/ |
H A D | 400-tcp_bind6.phpt | 19 $c = uv_tcp_init(); 20 uv_tcp_connect($c, uv_ip6_addr($addrinfo['address'], $addrinfo['port']), function($client, $stat) {
|
H A D | 400-tcp_bind.phpt | 19 $c = uv_tcp_init(); 20 uv_tcp_connect($c, uv_ip4_addr($addrinfo['address'],$addrinfo['port']), function($client, $stat) {
|
H A D | 005-uv_listen_cb-not-destroyed.phpt | 51 $c = uv_tcp_init($loop); 52 …uv_tcp_connect($c, uv_ip4_addr('0.0.0.0', 9876), function ($stream, $stat) use (&$closed, $tcpServ…
|
H A D | 320-fs-poll.phpt | 12 uv_fs_poll_start($poll,function($rsc,$stat,$p,$c) use (&$i) {
|
/php-uv/ |
H A D | config.w32 | 13 EXTENSION('uv', 'php_uv.c uv.c', PHP_UV_SHARED);
|
H A D | config.m4 | 43 PHP_NEW_EXTENSION(uv, php_uv.c uv.c $SOURCES, $ext_shared)
|
H A D | LICENSE | 3 Copyright (c) 1999 - 2014 The PHP Group. All rights reserved.
|
H A D | README.md | 46 $c = uv_tcp_init(); 47 uv_tcp_connect($c, uv_ip4_addr('0.0.0.0',8888), function($stream, $stat){
|
Completed in 15 milliseconds