Home
last modified time | relevance | path

Searched refs:domain (Results 1 – 25 of 134) sorted by last modified time

123456

/PHP-5.5/win32/
H A Dsockets.c31 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]) in socketpair() argument
37 if(domain != AF_INET) { in socketpair()
45 sock[0] = socket(domain, type, protocol); in socketpair()
66 sock[1] = socket(domain, type, protocol); in socketpair()
H A Dsockets.h26 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]);
/PHP-5.5/sapi/litespeed/
H A DREADME72 have lsphp accept request on Unix domain socket "/tmp/lsphp_manual.sock"
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in528 ;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
/PHP-5.5/
H A Dphp.ini-development1427 ; The domain for which the cookie is valid.
1428 ; http://php.net/session.cookie-domain
H A Dphp.ini-production1427 ; The domain for which the cookie is valid.
1428 ; http://php.net/session.cookie-domain
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_socket_pair.phpt5 $domain = (strtoupper(substr(PHP_OS, 0, 3) == 'WIN') ? STREAM_PF_INET : STREAM_PF_UNIX);
6 $sockets = stream_socket_pair($domain, STREAM_SOCK_STREAM, 0);
/PHP-5.5/ext/standard/tests/network/
H A Dbug64330.phpt5 if (!in_array("unix", stream_get_transports())) die("SKIP unix domain sockets unavailable");
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
H A Dsetcookie.phpt16 setcookie('name', 'value', 0, '', 'domain.tld');
30 'Set-Cookie: name=value; domain=domain.tld',
H A Dudgloop.phpt6 die('SKIP No support for UNIX domain sockets.');
H A Dunixloop.phpt6 die('SKIP No support for UNIX domain sockets.');
/PHP-5.5/ext/standard/tests/mail/
H A Dmail_include.inc5 $domain = "example.com";
7 $username = "$admin_user@$domain";
90 global $users, $domain;
95 . "To: $users[0]@$domain\r\n"
101 $envelope["to"] = "$users[0]@$domain";
/PHP-5.5/ext/standard/tests/file/windows_acls/
H A Dcommon.inc37 $domain = getenv('USERDOMAIN');
39 return $domain;
/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c52 long domain, type, protocol; in PHP_FUNCTION() local
57 &domain, &type, &protocol)) { in PHP_FUNCTION()
61 if (0 != socketpair(domain, type, protocol, pair)) { in PHP_FUNCTION()
H A Dhead.c76 …r *value, int value_len, time_t expires, char *path, int path_len, char *domain, int domain_len, i… in php_setcookie() argument
107 if (domain) { in php_setcookie()
155 if (domain && domain_len > 0) { in php_setcookie()
157 strlcat(cookie, domain, len + 100); in php_setcookie()
180 char *name, *value = NULL, *path = NULL, *domain = NULL; in PHP_FUNCTION() local
187 &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) { in PHP_FUNCTION()
191 …if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_len, s… in PHP_FUNCTION()
203 char *name, *value = NULL, *path = NULL, *domain = NULL; in PHP_FUNCTION() local
210 &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) { in PHP_FUNCTION()
214 …if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_len, s… in PHP_FUNCTION()
H A Dhead.h34 …r *value, int value_len, time_t expires, char *path, int path_len, char *domain, int domain_len, i…
H A Dbasic_functions.c1461 ZEND_ARG_INFO(0, domain)
1471 ZEND_ARG_INFO(0, domain)
1960 ZEND_ARG_INFO(0, domain)
/PHP-5.5/ext/sockets/tests/
H A Dsocket_select-wrongparams-1-win32.phpt14 $domain = AF_INET;
15 socket_create_pair($domain, SOCK_STREAM, 0, $sockets);
H A Dsocket_select-wrongparams-3.phpt14 $domain = AF_INET;
16 $domain = AF_UNIX;
18 socket_create_pair($domain, SOCK_STREAM, 0, $sockets);
H A Dsocket_select.phpt12 $domain = AF_INET;
14 $domain = AF_UNIX;
16 socket_create_pair($domain, SOCK_STREAM, 0, $sockets);
H A Dsocket_sentto_recvfrom_unix.phpt2 Test if socket_recvfrom() receives data sent by socket_sendto() through a Unix domain socket
H A Dsocket_strerror.phpt58 string(32) "Numerical argument out of domain"
H A Dunixloop.phpt2 Unix domain socket Loopback test

Completed in 91 milliseconds

123456