Home
last modified time | relevance | path

Searched refs:address (Results 101 – 125 of 148) sorted by path

123456

/php-src/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_unix.phpt22 $address = sprintf("/tmp/%s.sock", uniqid());
23 if (!socket_bind($socket, $address)) {
24 die("Unable to bind to $address");
29 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address);
31 @unlink($address);
34 @unlink($address);
42 @unlink($address);
45 @unlink($address);
51 @unlink($address);
H A Dsocket_shutdown-win32.phpt60 …connected and (when sending on a datagram socket using a sendto call) no address was supplied in %…
H A Dwsaprotocol_info_0.phpt14 $address = 'localhost';
21 if (socket_bind($sock, $address, $port) === false) {
/php-src/ext/standard/
H A Dbasic_functions.c536 char *address; in PHP_FUNCTION() local
542 Z_PARAM_STRING(address, address_len) in PHP_FUNCTION()
554 if (!inet_ntop(af, address, buffer, sizeof(buffer))) { in PHP_FUNCTION()
566 char *address; in PHP_FUNCTION() local
571 Z_PARAM_STRING(address, address_len) in PHP_FUNCTION()
577 if (strchr(address, ':')) { in PHP_FUNCTION()
581 if (!strchr(address, '.')) { in PHP_FUNCTION()
585 ret = inet_pton(af, address, buffer); in PHP_FUNCTION()
H A Dbasic_functions.stub.php3443 function stream_socket_client(string $address, &$error_code = null, &$error_message = null, ?float …
3452 function stream_socket_server(string $address, &$error_code = null, &$error_message = null, int $fl…
3467 * @param string|null $address
3470 function stream_socket_recvfrom($socket, int $length, int $flags = 0, &$address = null): string|fal…
3473 function stream_socket_sendto($socket, string $data, int $flags = 0, string $address = ""): int|fal…
H A Dbasic_functions_arginfo.h1882 ZEND_ARG_TYPE_INFO(0, address, IS_STRING, 0)
1891 ZEND_ARG_TYPE_INFO(0, address, IS_STRING, 0)
1913 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, address, "null")
1920 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, address, IS_STRING, 0, "\"\"")
H A Ddns.c299 const char *address; in php_gethostbyname() local
314 if (!(address = inet_ntop(AF_INET, &in, addr4, INET_ADDRSTRLEN))) { in php_gethostbyname()
318 return zend_string_init(address, strlen(address), 0); in php_gethostbyname()
/php-src/ext/standard/html_tables/mappings/
H A D8859-1.TXT45 # Please note that <errata@unicode.org> is an archival address;
H A D8859-15.TXT44 # Please note that <errata@unicode.org> is an archival address;
H A D8859-5.TXT45 # Please note that <errata@unicode.org> is an archival address;
H A DKOI8-R.TXT44 # Please note that <errata@unicode.org> is an archival address;
H A DROMAN.TXT18 # b03 1999-Sep-22 Update contact e-mail address. Matches
/php-src/ext/standard/tests/file/
H A Dstream_002.phpt22 Warning: stream_socket_client(): Unable to connect to (Failed to parse address "") in %s on line %d
25 string(26) "Failed to parse address """
27 Warning: stream_socket_client(): Unable to connect to [ (Failed to parse address "[") in %s on line…
30 string(27) "Failed to parse address "[""
37 Warning: stream_socket_client(): Unable to connect to . (Failed to parse address ".") in %s on line…
40 string(27) "Failed to parse address ".""
42 Warning: stream_socket_client(): Unable to connect to 1 (Failed to parse address "1") in %s on line…
45 string(27) "Failed to parse address "1""
/php-src/ext/standard/tests/misc/
H A Dbrowscap.ini3321 [ZIBB Crawler (email address / WWW address)]
/php-src/ext/standard/tests/network/
H A Dfsockopen_basic.phpt19 $hostname = 'tcp://127.0.0.1'; // loopback address
34 echo "\nCalling fsockopen() with address and port in same string:\n";
35 $address = $hostname . ':' . $port;
36 $third_client = fsockopen($address);
52 Calling fsockopen() with address and port in same string:
H A Dfsockopen_error.phpt8 $hostname = 'tcp://127.0.0.1'; // loopback address
17 $hostname = 'invalid://127.0.0.1'; // loopback address
H A Dfsockopen_variation1.phpt22 echo "\nCalling fsockopen() with address and port in same string, without a protocol:\n";
23 $address = $hostname . ':' . $port;
24 $second_client = fsockopen($address);
36 Calling fsockopen() with address and port in same string, without a protocol:
H A Dfsockopen_variation2.phpt21 echo "\nCalling fsockopen() with address and port in same string:\n";
22 $address = $hostname . ':' . $port;
23 $second_client = fsockopen($address);
43 Calling fsockopen() with address and port in same string:
H A Dgethostbyaddr_error.phpt25 Warning: gethostbyaddr\(\): Address is not (in a.b.c.d form|a valid IPv4 or IPv6 address) in .* on …
28 Warning: gethostbyaddr\(\): Address is not (in a.b.c.d form|a valid IPv4 or IPv6 address) in .* on …
31 Warning: gethostbyaddr\(\): Address is not (in a.b.c.d form|a valid IPv4 or IPv6 address) in .* on …
H A Dgethostbyname_error004.phpt2 gethostbyname() function - basic return valid ip address test
H A Dinet_ipv6.phpt27 foreach ($a as $address) {
28 $packed = inet_pton($address);
H A Dnet_get_interfaces_001.phpt10 // Test that we have exactly one unicast address with the address 127.0.0.1
18 if (($unicast['address'] ?? null) === '127.0.0.1') {
/php-src/ext/standard/tests/streams/
H A Dstream_socket_recvfrom.phpt2 …stream_socket_recvfrom ( resource $socket , int $length [, int $flags = 0 [, string &$address ]] );
/php-src/ext/xml/tests/
H A Dgh14124.phpt2 GH-14124 (Segmentation fault on unknown address 0x0001ffff8041 with XML extension under certain mem…
/php-src/ext/zlib/
H A Dzlib.c127 static void php_zlib_free(voidpf opaque, voidpf address) in php_zlib_free() argument
129 efree((void*)address); in php_zlib_free()

Completed in 166 milliseconds

123456