Home
last modified time | relevance | path

Searched refs:protocol (Results 1 – 25 of 66) sorted by relevance

123

/PHP-8.0/win32/
H A Dsockets.c27 PHPAPI int socketpair_win32(int domain, int type, int protocol, SOCKET sock[2], int overlapped) in socketpair_win32() argument
40 sock[0] = socket(domain, type, protocol); in socketpair_win32()
62 sock[1] = socket(domain, type, protocol); in socketpair_win32()
64 sock[1] = WSASocket(domain, type, protocol, NULL, 0, 0); in socketpair_win32()
94 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]) in socketpair() argument
96 return socketpair_win32(domain, type, protocol, sock, 1); in socketpair()
H A Dsockets.h25 PHPAPI int socketpair_win32(int domain, int type, int protocol, SOCKET sock[2], int overlapped);
26 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]);
/PHP-8.0/ext/standard/tests/network/
H A Dfsockopen_variation1.phpt2 testing fsockopen without a protocol string
16 echo "\nCalling fsockopen() without a protocol in the hostname string:\n";
22 echo "\nCalling fsockopen() with address and port in same string, without a protocol:\n";
33 Calling fsockopen() without a protocol in the hostname string:
36 Calling fsockopen() with address and port in same string, without a protocol:
H A Dgetprotobynumber_error.phpt11 // invalid protocol number
H A Dgetprotobyname_error.phpt11 // invalid protocol name
H A Dfsockopen_error.phpt16 echo "\n-- Attempting to connect using an invalid protocol --\n";
36 -- Attempting to connect using an invalid protocol --
H A Dbug20134.phpt9 * a connection-LESS protocol */
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_subclass.phpt18 $this->protocol();
23 $this->protocol();
28 $this->protocol();
34 // $this->protocol();
37 private function protocol() {
H A Dbug70066.phpt20 // USE is not supported in the prepared statement protocol,
/PHP-8.0/main/streams/
H A Dtransports.c28 PHPAPI int php_stream_xport_register(const char *protocol, php_stream_transport_factory factory) in php_stream_xport_register() argument
30 zend_string *str = zend_string_init_interned(protocol, strlen(protocol), 1); in php_stream_xport_register()
37 PHPAPI int php_stream_xport_unregister(const char *protocol) in php_stream_xport_unregister() argument
39 return zend_hash_str_del(&xport_hash, protocol, strlen(protocol)); in php_stream_xport_unregister()
62 const char *p, *protocol = NULL; in _php_stream_xport_create() local
102 protocol = name; in _php_stream_xport_create()
106 protocol = "tcp"; in _php_stream_xport_create()
110 if (protocol) { in _php_stream_xport_create()
111 if (NULL == (factory = zend_hash_str_find_ptr(&xport_hash, protocol, n))) { in _php_stream_xport_create()
116 PHP_STRLCPY(wrapper_name, protocol, sizeof(wrapper_name), n); in _php_stream_xport_create()
[all …]
H A Dstreams.c1729 protocol[i] != '+' && in php_stream_wrapper_scheme_validate()
1730 protocol[i] != '-' && in php_stream_wrapper_scheme_validate()
1731 protocol[i] != '.') { in php_stream_wrapper_scheme_validate()
1758 return zend_hash_str_del(&url_stream_wrappers_hash, protocol, strlen(protocol)); in php_unregister_url_stream_wrapper()
1771 if (php_stream_wrapper_scheme_validate(ZSTR_VAL(protocol), ZSTR_LEN(protocol)) == FAILURE) { in php_register_url_stream_wrapper_volatile()
1797 const char *p, *protocol = NULL; local
1813 protocol = path;
1816 if (protocol) {
1832 protocol = NULL;
1838 if (!protocol || !strncasecmp(protocol, "file", n)) {
[all …]
H A Duserspace.c469 zend_string *protocol; in PHP_FUNCTION() local
481 uwrap->protoname = estrndup(ZSTR_VAL(protocol), ZSTR_LEN(protocol)); in PHP_FUNCTION()
493 if (zend_hash_exists(php_stream_get_url_stream_wrappers_hash(), protocol)) { in PHP_FUNCTION()
508 zend_string *protocol; in PHP_FUNCTION() local
510 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &protocol) == FAILURE) { in PHP_FUNCTION()
514 if (php_unregister_url_stream_wrapper_volatile(protocol) == FAILURE) { in PHP_FUNCTION()
527 zend_string *protocol; in PHP_FUNCTION() local
531 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &protocol) == FAILURE) { in PHP_FUNCTION()
536 if ((wrapper = zend_hash_find_ptr(global_wrapper_hash, protocol)) == NULL) { in PHP_FUNCTION()
548 php_unregister_url_stream_wrapper_volatile(protocol); in PHP_FUNCTION()
[all …]
H A Dphp_stream_transport.h34 PHPAPI int php_stream_xport_register(const char *protocol, php_stream_transport_factory factory);
35 PHPAPI int php_stream_xport_unregister(const char *protocol);
/PHP-8.0/ext/openssl/tests/
H A Dsession_meta_capture.phpt46 var_dump(stream_get_meta_data($stream)['crypto']['protocol']);
50 var_dump(stream_get_meta_data($stream)['crypto']['protocol']);
54 var_dump(stream_get_meta_data($stream)['crypto']['protocol']);
/PHP-8.0/ext/mysqlnd/
H A Dconfig9.m410 [whether to disable compressed protocol support in mysqlnd],
12 [Disable support for the MySQL compressed protocol in mysqlnd])],
30 AC_DEFINE([MYSQLND_COMPRESSION_ENABLED], 1, [Enable compressed protocol support])
H A Dmysqlnd_ext_plugin.h98 } protocol; member
149 #define mysqlnd_protocol_get_methods() mysqlnd_plugin_methods_xetters.protocol.get()
150 #define mysqlnd_protocol_set_methods(m) mysqlnd_plugin_methods_xetters.protocol.set((m))
/PHP-8.0/ext/curl/tests/
H A Dcurl_strerror_001.phpt19 string(20) "unsupported protocol"
H A Dcurl_basic_009.phpt2 Test curl_error() & curl_errno() function with problematic protocol
/PHP-8.0/ext/snmp/tests/
H A Dsnmp-object-setSecurity_error.phpt62 Authentication protocol must be either "MD5" or "SHA"
69 Security protocol must be one of "DES", "AES128", or "AES"
70 Security protocol must be one of "DES", "AES128", or "AES"
/PHP-8.0/ext/ldap/tests/
H A Dldap_set_option_tls_protocol_min_basic.phpt2 ldap_set_option() - Basic test for TLS protocol min ldap option
/PHP-8.0/ext/standard/tests/http/
H A Dbug80838.phpt13 . "Hello from another protocol"
/PHP-8.0/ext/libxml/tests/
H A Dbug54440.phpt25 or die("Failed to register protocol");
/PHP-8.0/ext/sockets/
H A Dsockets.stub.php43 function socket_create(int $domain, int $type, int $protocol): Socket|false {} argument
81 function socket_create_pair(int $domain, int $type, int $protocol, &$pair): bool {} argument
/PHP-8.0/ext/pgsql/tests/
H A D00version.phpt24 ["protocol"]=>
/PHP-8.0/ext/standard/tests/general_functions/
H A Dgetservbyport_variation1.phpt4 Test function passing invalid port number and invalid protocol name

Completed in 46 milliseconds

123