/PHP-8.3/ext/filter/ |
H A D | logical_filters.c | 861 ip[i] = ip[i - offset]; in _php_filter_validate_ipv6() 908 (ip[0] == 172 && ip[1] >= 16 && ip[1] <= 31) || in php_filter_validate_ip() 928 (ip[0] == 100 && ip[1] >= 64 && ip[1] <= 127 ) || in php_filter_validate_ip() 929 (ip[0] == 192 && ip[1] == 0 && ip[2] == 0 ) || in php_filter_validate_ip() 930 (ip[0] == 192 && ip[1] == 0 && ip[2] == 2 ) || in php_filter_validate_ip() 931 (ip[0] == 198 && ip[1] >= 18 && ip[1] <= 19 ) || in php_filter_validate_ip() 933 (ip[0] == 203 && ip[1] == 0 && ip[2] == 113 ) in php_filter_validate_ip() 955 if ((ip[0] == 0 && ip[1] == 0 && ip[2] == 0 && ip[3] == 0 in php_filter_validate_ip() 956 && ip[4] == 0 && ip[5] == 0 && ip[6] == 0 && (ip[7] == 0 || ip[7] == 1)) in php_filter_validate_ip() 966 if ((ip[0] == 0 && ip[1] == 0 && ip[2] == 0 && ip[3] == 0 && ip[4] == 0 && ip[5] == 0xffff) || in php_filter_validate_ip() [all …]
|
/PHP-8.3/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.3/ext/snmp/tests/ |
H A D | bug60749.phpt | 16 $ip = gethostbyname($hostname); 17 if (ip2long($ip) === FALSE) { 25 echo "'" . $info["hostname"] . "' != '$ip:$port'\n";
|
/PHP-8.3/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.3/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.3/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.3/ext/sockets/tests/ |
H A D | socket_getsockname.phpt | 15 $s_conn = socket_getsockname($s_c, $ip, $port); 17 var_dump($ip);
|
H A D | socket_getpeername.phpt | 15 $s_peer = socket_getpeername($s_c, $ip, $port); 17 var_dump($ip);
|
/PHP-8.3/main/ |
H A D | php_variables.c | 150 ip = p; in php_register_variable_ex() 221 ip++; in php_register_variable_ex() 222 index_s = ip; in php_register_variable_ex() 224 ip++; in php_register_variable_ex() 226 if (*ip==']') { in php_register_variable_ex() 229 ip = strchr(ip, ']'); in php_register_variable_ex() 230 if (!ip) { in php_register_variable_ex() 247 *ip = 0; in php_register_variable_ex() 288 ip++; in php_register_variable_ex() 289 if (*ip == '[') { in php_register_variable_ex() [all …]
|
H A D | fastcgi.c | 774 if (ip) { 775 ip = strdup(ip); 776 cur = ip; 784 cur = ip; 805 free(ip); 828 void fcgi_set_allowed_clients(char *ip) argument 833 if (ip) { 834 ip = strdup(ip); 835 cur = ip; 844 cur = ip; [all …]
|
H A D | fastcgi.h | 96 void fcgi_set_allowed_clients(char *ip);
|
/PHP-8.3/ext/pgsql/tests/ |
H A D | bug71998.phpt | 58 foreach ($ips as $ip) { 59 $data = array("id" => ++$i, "remote_addr" => $ip); 68 if (!$r && in_array($ip, $bad)) {
|
/PHP-8.3/ext/standard/ |
H A D | dns.c | 121 static zend_string *php_gethostbyaddr(char *ip); 173 static zend_string *php_gethostbyaddr(char *ip) in php_gethostbyaddr() argument 182 if (inet_pton(AF_INET6, ip, &sa6.sin6_addr)) { in php_gethostbyaddr() 186 return zend_string_init(ip, strlen(ip), 0); in php_gethostbyaddr() 189 } else if (inet_pton(AF_INET, ip, &sa4.sin_addr)) { in php_gethostbyaddr() 193 return zend_string_init(ip, strlen(ip), 0); in php_gethostbyaddr() 202 addr.s_addr = inet_addr(ip); in php_gethostbyaddr() 211 return zend_string_init(ip, strlen(ip), 0); in php_gethostbyaddr()
|
H A D | ftp_fopen_wrapper.c | 313 static unsigned short php_fopen_do_pasv(php_stream *stream, char *ip, size_t ip_size, char **phosts… in php_fopen_do_pasv() argument 355 memcpy(ip, hoststart, ip_size); in php_fopen_do_pasv() 356 ip[ip_size-1] = '\0'; in php_fopen_do_pasv() 357 hoststart = ip; in php_fopen_do_pasv() 409 char ip[sizeof("123.123.123.123")]; in php_stream_url_wrap_ftp() local 511 portno = php_fopen_do_pasv(stream, ip, sizeof(ip), &hoststart); in php_stream_url_wrap_ftp() 689 char ip[sizeof("123.123.123.123")]; in php_stream_ftp_opendir() local 709 portno = php_fopen_do_pasv(stream, ip, sizeof(ip), &hoststart); in php_stream_ftp_opendir()
|
H A D | basic_functions.c | 604 struct in_addr ip; in PHP_FUNCTION() local 606 zend_ulong ip; in PHP_FUNCTION() local 614 if (addr_len == 0 || inet_pton(AF_INET, addr, &ip) != 1) { in PHP_FUNCTION() 617 RETURN_LONG(ntohl(ip.s_addr)); in PHP_FUNCTION() 619 if (addr_len == 0 || (ip = inet_addr(addr)) == INADDR_NONE) { in PHP_FUNCTION() 630 RETURN_LONG(ntohl(ip)); in PHP_FUNCTION() 638 zend_ulong ip; in PHP_FUNCTION() local 650 ip = (zend_ulong)sip; in PHP_FUNCTION() 652 myaddr.s_addr = htonl(ip); in PHP_FUNCTION()
|
H A D | basic_functions.stub.php | 1917 function ip2long(string $ip): int|false {} argument 1920 function long2ip(int $ip): string|false {} argument 2117 function gethostbyaddr(string $ip): string|false {} 2212 function inet_ntop(string $ip): string|false {} 2217 function inet_pton(string $ip): string|false {}
|
H A D | basic_functions_arginfo.h | 381 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0) 385 ZEND_ARG_TYPE_INFO(0, ip, IS_LONG, 0) 619 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0) 725 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0) 731 ZEND_ARG_TYPE_INFO(0, ip, IS_STRING, 0)
|
/PHP-8.3/Zend/ |
H A D | Zend.m4 | 366 int emu(const opcode_handler_t *ip, void *fp) { 369 IP = ip; 371 while ((*ip)());
|
/PHP-8.3/ext/ldap/tests/ |
H A D | README.md | 48 config.vm.network "private_network", ip: "192.168.33.10"
|
/PHP-8.3/sapi/fpm/ |
H A D | www.conf.in | 33 ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on 35 ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on 67 ; accepted from any ip address. 266 ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on 268 ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
|
/PHP-8.3/sapi/fpm/tests/ |
H A D | fcgi.inc | 257 $ip = filter_var($host, FILTER_VALIDATE_IP) ? $host : gethostbyname($host); 259 if (!socket_connect($this->socket, $ip, $port)) {
|