/PHP-8.0/ext/filter/ |
H A D | logical_filters.c | 840 ip[i] = 0; in _php_filter_validate_ipv6() 848 ip[i] = ip[i - offset]; in _php_filter_validate_ipv6() 851 ip[i] = 0; in _php_filter_validate_ipv6() 895 (ip[0] == 172 && ip[1] >= 16 && ip[1] <= 31) || in php_filter_validate_ip() 896 (ip[0] == 192 && ip[1] == 168) in php_filter_validate_ip() 907 (ip[0] == 169 && ip[1] == 254) in php_filter_validate_ip() 923 if (ip[0] >= 0xfc00 && ip[0] <= 0xfdff) { in php_filter_validate_ip() 928 if ((ip[0] == 0 && ip[1] == 0 && ip[2] == 0 && ip[3] == 0 in php_filter_validate_ip() 929 && ip[4] == 0 && ip[5] == 0 && ip[6] == 0 && (ip[7] == 0 || ip[7] == 1)) in php_filter_validate_ip() 931 || (ip[0] >= 0xfe80 && ip[0] <= 0xfebf) in php_filter_validate_ip() [all …]
|
/PHP-8.0/ext/snmp/tests/ |
H A D | bug60749.phpt | 14 $ip = gethostbyname($hostname); 15 if (ip2long($ip) === FALSE) { 22 if (strcmp($info["hostname"], "$ip:$port") !== 0) { 23 echo "'" . $info["hostname"] . "' != '$ip:$port'\n";
|
/PHP-8.0/ext/standard/tests/network/ |
H A D | gethostbyname_error004.phpt | 2 gethostbyname() function - basic return valid ip address test 12 $ip = gethostbyname("www.php.net"); 13 var_dump((bool) ip2long($ip));
|
H A D | ip2long_variation2.phpt | 19 foreach($ips as $ip) { 20 var_dump(ip2long($ip));
|
H A D | ip.phpt | 19 foreach ($array as $ip) { 20 var_dump($long = ip2long($ip));
|
H A D | ip_x86_64.phpt | 19 foreach ($array as $ip) { 20 var_dump($long = ip2long($ip));
|
H A D | ip2long_variation2_x64.phpt | 26 foreach($ips as $ip) { 27 var_dump(ip2long($ip));
|
/PHP-8.0/ext/curl/tests/ |
H A D | curl_error_basic.phpt | 12 $ip = gethostbyname($url); 13 if ($ip != $url) die("skip 'fakeURL' resolves to $ip\n");
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | str_shuffle_basic.phpt | 20 $ip = 'abcd'; 21 $len_ip = strlen($ip); 24 $op = str_shuffle($ip);
|
/PHP-8.0/ext/filter/tests/ |
H A D | 030.phpt | 52 foreach ($ipv6_test as $ip => $exp) { 53 $out = filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6); 56 echo "$ip failed (expected ", $exp?"true":"false", ", got ",
|
/PHP-8.0/ext/sockets/tests/ |
H A D | socket_getsockname.phpt | 19 $s_conn = socket_getsockname($s_c, $ip, $port); 21 var_dump($ip);
|
H A D | socket_getpeername.phpt | 19 $s_peer = socket_getpeername($s_c, $ip, $port); 21 var_dump($ip);
|
/PHP-8.0/ext/pgsql/tests/ |
H A D | bug71998.phpt | 56 foreach ($ips as $ip) { 57 $data = array("id" => ++$i, "remote_addr" => $ip); 60 if (!$r && in_array($ip, $bad)) {
|
/PHP-8.0/main/ |
H A D | php_variables.c | 100 ip = p; in php_register_variable_ex() 185 ip++; in php_register_variable_ex() 186 index_s = ip; in php_register_variable_ex() 188 ip++; in php_register_variable_ex() 190 if (*ip==']') { in php_register_variable_ex() 193 ip = strchr(ip, ']'); in php_register_variable_ex() 194 if (!ip) { in php_register_variable_ex() 211 *ip = 0; in php_register_variable_ex() 246 ip++; in php_register_variable_ex() 247 if (*ip == '[') { in php_register_variable_ex() [all …]
|
H A D | fastcgi.c | 775 if (ip) { in fcgi_listen() 776 ip = strdup(ip); in fcgi_listen() 777 cur = ip; in fcgi_listen() 785 cur = ip; in fcgi_listen() 806 free(ip); in fcgi_listen() 829 void fcgi_set_allowed_clients(char *ip) in fcgi_set_allowed_clients() argument 834 if (ip) { in fcgi_set_allowed_clients() 835 ip = strdup(ip); in fcgi_set_allowed_clients() 836 cur = ip; in fcgi_set_allowed_clients() 845 cur = ip; in fcgi_set_allowed_clients() [all …]
|
H A D | fastcgi.h | 96 void fcgi_set_allowed_clients(char *ip);
|
/PHP-8.0/ext/standard/ |
H A D | ftp_fopen_wrapper.c | 315 static unsigned short php_fopen_do_pasv(php_stream *stream, char *ip, size_t ip_size, char **phosts… in php_fopen_do_pasv() argument 357 memcpy(ip, hoststart, ip_size); in php_fopen_do_pasv() 358 ip[ip_size-1] = '\0'; in php_fopen_do_pasv() 359 hoststart = ip; in php_fopen_do_pasv() 411 char ip[sizeof("123.123.123.123")]; in php_stream_url_wrap_ftp() local 513 portno = php_fopen_do_pasv(stream, ip, sizeof(ip), &hoststart); in php_stream_url_wrap_ftp() 690 char ip[sizeof("123.123.123.123")]; in php_stream_ftp_opendir() local 710 portno = php_fopen_do_pasv(stream, ip, sizeof(ip), &hoststart); in php_stream_ftp_opendir()
|
H A D | dns.c | 117 static zend_string *php_gethostbyaddr(char *ip); 169 static zend_string *php_gethostbyaddr(char *ip) in php_gethostbyaddr() argument 178 if (inet_pton(AF_INET6, ip, &addr6)) { in php_gethostbyaddr() 180 } else if (inet_pton(AF_INET, ip, &addr)) { in php_gethostbyaddr() 186 addr.s_addr = inet_addr(ip); in php_gethostbyaddr() 196 return zend_string_init(ip, strlen(ip), 0); in php_gethostbyaddr()
|
H A D | basic_functions.c | 667 struct in_addr ip; in PHP_FUNCTION() local 669 zend_ulong ip; in PHP_FUNCTION() local 677 if (addr_len == 0 || inet_pton(AF_INET, addr, &ip) != 1) { in PHP_FUNCTION() 680 RETURN_LONG(ntohl(ip.s_addr)); in PHP_FUNCTION() 682 if (addr_len == 0 || (ip = inet_addr(addr)) == INADDR_NONE) { in PHP_FUNCTION() 693 RETURN_LONG(ntohl(ip)); in PHP_FUNCTION() 701 zend_ulong ip; in PHP_FUNCTION() local 713 ip = (zend_ulong)sip; in PHP_FUNCTION() 715 myaddr.s_addr = htonl(ip); in PHP_FUNCTION()
|
H A D | basic_functions.stub.php | 261 function ip2long(string $ip): int|false {} argument 263 function long2ip(int $ip): string|false {} argument 398 function gethostbyaddr(string $ip): string|false {} argument 485 function inet_ntop(string $ip): string|false {} argument 489 function inet_pton(string $ip): string|false {} argument
|
H A D | basic_functions_arginfo.h | 377 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0) 381 ZEND_ARG_TYPE_INFO(0, ip, IS_LONG, 0) 611 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0) 720 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0) 726 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0)
|
/PHP-8.0/Zend/ |
H A D | Zend.m4 | 309 int emu(const opcode_handler_t *ip, void *fp) { 312 IP = ip; 314 while ((*ip)());
|
/PHP-8.0/sapi/fpm/ |
H A D | www.conf.in | 28 ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on 30 ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on 61 ; accepted from any ip address. 247 ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on 249 ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
|
/PHP-8.0/ext/ldap/tests/ |
H A D | README.md | 48 config.vm.network "private_network", ip: "192.168.33.10"
|
/PHP-8.0/sapi/fpm/tests/ |
H A D | tester.inc | 1049 'PORT' => ['getPort', 'ip'], 1123 public function getPort(string $type = 'ip', $pool = 'default', $useAsId = false)
|