Home
last modified time | relevance | path

Searched refs:client (Results 1 – 25 of 384) sorted by last modified time

12345678910>>...16

/PHP-5.5/win32/
H A Dinstall.txt1032 php_oci8.dll Oracle 8 functions Requires: Oracle 8.1+ client libraries
1034 php_oracle.dll Oracle functions Requires: Oracle 7 client libraries
1041 php_sybase_ct.dll Sybase functions Requires: Sybase client libraries
1649 This has actually nothing to do with PHP, but with the MySQL client
/PHP-5.5/sapi/nsapi/
H A Dnsapi.c706 value = pblock_findval(nsapi_client[i].nsapi_eq, rc->sn->client); in sapi_nsapi_register_server_variables()
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch628 - /* If the client wants to do keep-alives, it might also be doing
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c616 if (!client) { in sapi_cli_server_ub_write()
627 if (!client) { in sapi_cli_server_flush()
754 strncpy(addr, client->addr_str, tmp - client->addr_str); in sapi_cli_server_register_variables()
1731client->request.content = perealloc(client->request.content, client->request.content_len + length,… in php_cli_server_client_read_request_on_body()
1741 …php_cli_server_request_translate_vpath(&client->request, client->server->document_root, client->se… in php_cli_server_client_read_request_on_message_complete()
1792 client->parser.data = client; in php_cli_server_client_read_request()
1872 client->addr = addr; in php_cli_server_client_ctor()
2041 …if (client->request.path_translated && strlen(client->request.path_translated) != client->request.… in php_cli_server_begin_send_static()
2166 …if (client->request.ext_len != 3 || memcmp(client->request.ext, "php", 3) || !client->request.path… in php_cli_server_dispatch()
2381 if (client->file_fd >= 0 && !client->content_sender.buffer.first) { in php_cli_server_send_event()
[all …]
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c262 bflush((request_rec *) server_context->connection->client); in sapi_apache_flush()
H A Dconfig.m412 AC_TRY_COMPILE([#include <httpd.h>],[conn_rec *c; int fd = c->client->fd;],[
/PHP-5.5/sapi/apache/
H A Dmod_php5.c117 bflush((request_rec *) server_context->connection->client); in sapi_apache_flush()
398 fd = r->connection->client->fd; in sapi_apache_get_fd()
H A Dconfig.m412 AC_TRY_COMPILE([#include <httpd.h>],[conn_rec *c; int fd = c->client->fd;],[
/PHP-5.5/
H A Dphp.ini-development214 ; data to the client. If your application's output exceeds this setting, PHP
758 ; security tokens of the calling client. This allows IIS to define the
1324 ; Minimum client message severity to display.
1325 ; http://php.net/sybct.min-client-severity
1643 ; Specify client character set.
1644 ; If empty or not set the client charset from freetds.conf is used
H A Dphp.ini-production214 ; data to the client. If your application's output exceeds this setting, PHP
758 ; security tokens of the calling client. This allows IIS to define the
1324 ; Minimum client message severity to display.
1325 ; http://php.net/sybct.min-client-severity
1643 ; Specify client character set.
1644 ; If empty or not set the client charset from freetds.conf is used
/PHP-5.5/main/streams/
H A Dtransports.c284 PHPAPI int php_stream_xport_accept(php_stream *stream, php_stream **client, in php_stream_xport_accept() argument
305 *client = param.outputs.client; in php_stream_xport_accept()
H A Dxp_socket.c709 xparam->outputs.client = NULL; in php_tcp_sockop_accept()
733 xparam->outputs.client = php_stream_alloc_rel(stream->ops, clisockdata, NULL, "r+"); in php_tcp_sockop_accept()
734 if (xparam->outputs.client) { in php_tcp_sockop_accept()
735 xparam->outputs.client->context = stream->context; in php_tcp_sockop_accept()
743 return xparam->outputs.client == NULL ? -1 : 0; in php_tcp_sockop_accept()
H A Dphp_stream_transport.h83 PHPAPI int php_stream_xport_accept(php_stream *stream, php_stream **client,
154 php_stream *client; member
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation1.phpt10 $client = fsockopen('tcp://127.0.0.1:31337');
11 if (!$client) {
20 var_dump(stream_get_meta_data($client));
23 fgets($client);
24 var_dump(stream_get_meta_data($client));
27 fread($client, 3);
28 var_dump(stream_get_meta_data($client));
33 while(!feof($client)) {
34 fread($client, 1);
36 var_dump(stream_get_meta_data($client));
[all …]
H A Dstream_get_meta_data_socket_variation2.phpt10 $client = fsockopen('tcp://127.0.0.1:31337');
11 if (!$client) {
18 var_dump(stream_get_meta_data($client));
21 socket_set_timeout($client, 0, 1000);
22 fread($client, 1);
23 var_dump(stream_get_meta_data($client));
27 var_dump(stream_get_meta_data($client));
30 fread($client, 5);
31 var_dump(stream_get_meta_data($client));
33 fclose($client);
[all …]
H A Dstream_get_meta_data_socket_variation3.phpt10 $client = fsockopen('tcp://127.0.0.1:31337');
11 if (!$client) {
18 var_dump(stream_get_meta_data($client));
21 var_dump(socket_set_blocking($client, 0));
22 var_dump(stream_get_meta_data($client));
25 var_dump(socket_set_blocking($client, 1));
26 var_dump(stream_get_meta_data($client));
28 fclose($client);
H A Dstream_get_meta_data_socket_variation4.phpt10 $client = fsockopen('tcp://127.0.0.1:31337');
11 if (!$client) {
20 var_dump(stream_get_meta_data($client));
22 echo "\n\nRead a line from the client:\n";
23 fgets($client);
24 var_dump(stream_get_meta_data($client));
29 while(!feof($client)) {
30 fread($client, 1);
32 var_dump(stream_get_meta_data($client));
34 fclose($client);
[all …]
H A Dstream_set_timeout_error.phpt25 $client = fsockopen("tcp://127.0.0.1:$port");
30 var_dump( stream_set_timeout($client, $seconds, $microseconds, $extra_arg) );
36 var_dump( stream_set_timeout($client) );
40 fclose($client);
41 var_dump( stream_set_timeout($client, $seconds) );
/PHP-5.5/ext/standard/tests/network/
H A Dbug64330.phpt12 $client = stream_socket_client("unix://\x00/MyBindName");
13 if ($client) {
H A Dfsockopen_basic.phpt31 $client = fsockopen($hostname, $port, $errno, $errstr, $timeout);
32 var_dump($client);
33 fclose($client);
H A Dshutdown.phpt26 die('Unable to create AF_INET socket [client]');
35 die('Unable to create AF_INET socket [client]');
H A Dtcp4loop.phpt19 $client = stream_socket_client("tcp://127.0.0.1:$port");
20 if (!$client) {
21 die('Unable to create AF_INET socket [client]');
30 fwrite($client, "ABCdef123\n");
35 fclose($client);
H A Dtcp6loop.phpt28 $client = stream_socket_client("tcp://[::1]:$port");
29 if (!$client) {
30 die('Unable to create AF_INET6 socket [client]');
39 fwrite($client, "ABCdef123\n");
44 fclose($client);
H A Dudgloop.phpt21 $client = stream_socket_client("udg:///tmp/$uniqid.sock");
22 if (!$client) {
23 die('Unable to create AF_UNIX socket [client]');
26 fwrite($client, "ABCdef123\n");
31 fclose($client);
H A Dudp4loop.phpt12 $client = stream_socket_client('udp://127.0.0.1:31338');
13 if (!$client) {
14 die('Unable to create AF_INET socket [client]');
17 fwrite($client, "ABCdef123\n");
22 fclose($client);

Completed in 60 milliseconds

12345678910>>...16