Home
last modified time | relevance | path

Searched refs:address (Results 1 – 25 of 116) sorted by last modified time

12345

/PHP-5.5/win32/
H A Dsockets.c33 struct sockaddr_in address; in socketpair() local
35 int size = sizeof(address); in socketpair()
50 address.sin_addr.s_addr = INADDR_ANY; in socketpair()
51 address.sin_family = AF_INET; in socketpair()
52 address.sin_port = 0; in socketpair()
54 if (bind(sock[0], (struct sockaddr*)&address, sizeof(address)) != 0) { in socketpair()
58 if(getsockname(sock[0], (struct sockaddr *)&address, &size) != 0) { in socketpair()
71 address.sin_addr.s_addr = htonl(INADDR_LOOPBACK); in socketpair()
72 if(connect(sock[1], (struct sockaddr*)&address, sizeof(address)) != 0) { in socketpair()
76 redirect = accept(sock[0],(struct sockaddr*)&address, &size); in socketpair()
H A Dinstall.txt1224 php-install-subscribe@lists.php.net. The mailing list address is
/PHP-5.5/win32/build/
H A Dprojectgen.js296 path = address.slice(0, address.lastIndexOf("\\")+1);
297 ext = address.slice(address.lastIndexOf("\\")+1, address.length-4);
327 if (address.match("sapi")) {
334 address = "win32\\php.dsp";
342 address = "win32\\php-cgi.dsp";
350 address = address.replace(ext + ".dsp", newext + ".dsp");
359 dsp = FSO.CreateTextFile(address, true);
360 STDOUT.WriteLine("\tGenerating " + address);
373 dsp = FSO.CreateTextFile(address, true);
374 STDOUT.WriteLine("\tGenerating " + address);
[all …]
/PHP-5.5/tests/classes/
H A Dclass_example.phpt10 public $first_name,$family_name,$address,$phone_num;
17 echo "Address:\t ".$this->address."\n";
21 function initialize($first_name,$family_name,$address,$phone_num)
25 $this->address = $address;
35 $t->address = "New address...";
84 Address: New address...
H A Dclone_006.phpt18 $this->address = "New York";
26 $original->address = "Tel-Aviv";
34 echo $clone->address . "\n";
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch1346 - m->addr = (void*) 1; /* arbitrary non-NULL address */
1347 + m->addr = (void*) 5; /* arbitrary non-NULL address */
1362 /* And return the address. */
1372 /* Find the Map entry for this address. First try a hash. */
1981 /* No file address means someone else is handling it. */
/PHP-5.5/sapi/litespeed/
H A DREADME22 to address this issue. PHP configurations can be modified the same way
55 address can be IPv4, IPv6 or Unix Domain Socket address.
60 have lsphp bind to port 3000 on all IPv4 and IPv6 address,
64 have lsphp bind to port 300 on all IPv4 address.
68 have lsphp bind to address 192.168.0.2:3000.
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_sockets.c239 enum fpm_address_domain fpm_sockets_domain_from_address(char *address) /* {{{ */ in fpm_sockets_domain_from_address() argument
241 if (strchr(address, ':')) { in fpm_sockets_domain_from_address()
245 if (strlen(address) == strspn(address, "0123456789")) { in fpm_sockets_domain_from_address()
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in152 ; The address on which to accept FastCGI requests.
154 ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on
156 ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
181 ; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
183 ; accepted from any ip address.
420 ; %R: remote IP address
/PHP-5.5/
H A Dphp.ini-development809 ; Define the anonymous ftp password (your email address). PHP's default setting
1012 ; the full path of the script, line number, To address and headers.
H A Dphp.ini-production809 ; Define the anonymous ftp password (your email address). PHP's default setting
1012 ; the full path of the script, line number, To address and headers.
H A Dltmain.sh4715 lt_ptr address;
/PHP-5.5/main/
H A Dalloca.c343 i00afunc (long *address) in i00afunc() argument
378 if ((block <= address) && (address < (block + size))) in i00afunc()
385 result = address - block; in i00afunc()
417 i00afunc (long address) in i00afunc() argument
452 while (!(this_segment <= address && address <= stkl)) in i00afunc()
455 fprintf (stderr, "%011o %011o %011o\n", this_segment, address, stkl); in i00afunc()
466 result = address - this_segment; in i00afunc()
/PHP-5.5/ext/zlib/
H A Dzlib.c58 static void php_zlib_free(voidpf opaque, voidpf address) in php_zlib_free() argument
60 efree((void*)address); in php_zlib_free()
H A Dzlib_filter.c46 static void php_zlib_free(voidpf opaque, voidpf address) in php_zlib_free() argument
48 pefree((void*)address, ((php_zlib_filter_data*)opaque)->persistent); in php_zlib_free()
/PHP-5.5/ext/standard/tests/network/
H A Dinet.phpt59 Warning: inet_pton(): Unrecognized address in %s on line %d
62 Warning: inet_pton(): Unrecognized address -1 in %s on line %d
65 Warning: inet_pton(): Unrecognized address abra in %s on line %d
H A Dip2long_variation1.phpt6 …ion: Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address
H A Dip2long_variation2.phpt8 …ion: Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address
H A Dfsockopen_basic.phpt25 $hostname = 'tcp://127.0.0.1'; // loopback address
40 echo "\nCalling fsockopen() with address and port in same string:\n";
41 $address = $hostname . ':' . $port;
42 $third_client = fsockopen($address);
58 Calling fsockopen() with address and port in same string:
H A Dfsockopen_error.phpt30 $hostname = 'tcp://127.0.0.1'; // loopback address
39 $hostname = 'invalid://127.0.0.1'; // loopback address
H A Dgethostbyaddr_basic1.phpt6 * Description: Get the Internet host name corresponding to a given IP address
H A Dgethostbyaddr_error.phpt6 * Description: Get the Internet host name corresponding to a given IP address
52 Warning: gethostbyaddr\(\): Address is not (in a.b.c.d form|a valid IPv4 or IPv6 address) in .* on …
55 Warning: gethostbyaddr\(\): Address is not (in a.b.c.d form|a valid IPv4 or IPv6 address) in .* on …
58 Warning: gethostbyaddr\(\): Address is not (in a.b.c.d form|a valid IPv4 or IPv6 address) in .* on …
H A Dgethostbyname_basic003.phpt6 * Description: Get the IPv4 address corresponding to a given Internet host name
H A Dinet_ipv6.phpt29 foreach ($a as $address) {
30 $packed = inet_pton($address);
43 Warning: inet_pton(): Unrecognized address in %s on line %d
H A Dip2long_error.phpt6 …ion: Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address

Completed in 94 milliseconds

12345