Home
last modified time | relevance | path

Searched refs:domain (Results 51 – 75 of 95) sorted by relevance

1234

/PHP-7.2/ext/gettext/tests/
H A Dgettext_textdomain-retval.phpt2 Check if textdomain() returns the new domain
/PHP-7.2/ext/ldap/tests/
H A Dldap_get_entries_variation.phpt19 ldap_search($link, "$base", "(o=my-unexisting-domain)")
H A Dconnect.inc4 Default values are "localhost", "cn=Manager,dc=my-domain,dc=com", and password "secret".
10 $base = getenv("LDAP_TEST_BASE") ? getenv("LDAP_TEST_BASE") : "dc=my-domain,dc=com";
H A Dldap_delete_error.phpt31 ldap_delete($link, "dc=my-domain,$base"),
H A Dldap_mod_replace_error.phpt24 var_dump(ldap_mod_replace($link, "dc=my-domain,$base", array()));
/PHP-7.2/ext/sockets/tests/
H A Dmcast_ipv4_send_error.phpt13 $domain = AF_INET;
15 $s = socket_create($domain, SOCK_DGRAM, SOL_UDP) or die("err");
H A Dmcast_ipv6_recv.phpt49 $domain = AF_INET6;
56 $sends1 = socket_create($domain, SOCK_DGRAM, SOL_UDP) or die("err");
60 $s = socket_create($domain, SOCK_DGRAM, SOL_UDP) or die("err");
H A Dunixloop.phpt2 Unix domain socket Loopback test
H A Dsocket_sentto_recvfrom_unix.phpt2 Test if socket_recvfrom() receives data sent by socket_sendto() through a Unix domain socket
/PHP-7.2/ext/session/tests/
H A Dsession_set_cookie_params_basic.phpt11 …* Prototype : void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bo…
H A Dsession_set_cookie_params_variation1.phpt13 …* Prototype : void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bo…
H A Dsession_set_cookie_params_variation2.phpt13 …* Prototype : void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bo…
H A Dsession_set_cookie_params_variation3.phpt13 …* Prototype : void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bo…
H A Dsession_set_cookie_params_variation4.phpt13 …* Prototype : void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bo…
H A Dsession_set_cookie_params_variation5.phpt13 …* Prototype : void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bo…
H A Dsession_set_cookie_params_error.phpt11 …* Prototype : void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bo…
/PHP-7.2/ext/imap/tests/
H A Dimap_fetch_overview_variation6.phpt43 global $users, $domain;
45 $envelope["to"] = "$users[0]@$domain";
/PHP-7.2/ext/standard/tests/network/
H A Dudgloop.phpt6 die('SKIP No support for UNIX domain sockets.');
H A Dunixloop.phpt6 die('SKIP No support for UNIX domain sockets.');
H A Dfsockopen_basic.phpt6 * Description: Open Internet or Unix domain socket connection
H A Dfsockopen_error.phpt6 * Description: Open Internet or Unix domain socket connection
/PHP-7.2/ext/standard/tests/file/windows_acls/
H A Dcommon.inc37 $domain = getenv('USERDOMAIN');
39 return $domain;
/PHP-7.2/ext/sockets/
H A Dsockets.c163 ZEND_ARG_INFO(0, domain)
231 ZEND_ARG_INFO(0, domain)
2223 zend_long domain, type, protocol; local
2225 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "lllz/", &domain, &type, &protocol, &fds_array_zval) ==…
2232 if (domain != AF_INET
2234 && domain != AF_INET6
2236 && domain != AF_UNIX) {
2238 domain = AF_INET;
2246 if (socketpair(domain, type, protocol, fds_array) != 0) {
2259 php_sock[0]->type = domain;
[all …]
/PHP-7.2/ext/filter/
H A Dlogical_filters.c457 static int _php_filter_validate_domain(char * domain, int len, zend_long flags) /* {{{ */ in _php_filter_validate_domain() argument
464 s = domain; in _php_filter_validate_domain()
466 e = domain + l; in _php_filter_validate_domain()
/PHP-7.2/ext/soap/
H A Dphp_http.c321 static int in_domain(const char *host, const char *domain) in in_domain() argument
323 if (domain[0] == '.') { in in_domain()
325 int l2 = strlen(domain); in in_domain()
327 return strcmp(host+l1-l2,domain) == 0; in in_domain()
332 return strcmp(host,domain) == 0; in in_domain()

Completed in 38 milliseconds

1234