Home
last modified time | relevance | path

Searched refs:protocol_version (Results 76 – 100 of 105) sorted by relevance

12345

/PHP-7.4/ext/ldap/tests/
H A Dldap_get_option_controls.phpt14 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
66 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_start_tls_error.phpt14 ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
H A Dldap_search_basic.phpt16 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
29 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_mod_add_error.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
55 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dbug48441.phpt14 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
38 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_modify_error.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
55 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_mod_ext.phpt18 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
61 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_sort_basic.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
47 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_modify_batch_error.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
76 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_search_overrides.phpt15 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
42 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_sort_variation.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
47 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_bind_error.phpt14 ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
H A Dldap_search_variation6.phpt16 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
43 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_search_sort_controls.phpt17 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
78 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_unbind_error.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_add_error.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
95 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_bind_ext.phpt17 ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
H A Dldap_controls.phpt17 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
58 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_class_mysqli_interface.phpt108 "protocol_version" => true,
219 assert(mysqli_get_proto_info($link) === $mysqli->protocol_version);
220 printf("mysqli->protocol_version = '%s'/%s ('%s'/%s)\n",
221 $mysqli->protocol_version, gettype($mysqli->protocol_version),
288 mysqli->protocol_version = '%d'/integer ('%d'/integer)
H A Dbug34810.phpt94 ["protocol_version"]=>
H A Dmysqli_kill.phpt125 ["protocol_version"]=>
/PHP-7.4/ext/standard/tests/http/
H A Dbug47021.phpt28 'protocol_version' => '1.1',
/PHP-7.4/ext/standard/
H A Dhttp_fopen_wrapper.c416 char *protocol_version; in php_stream_url_wrap_http_ex() local
417 spprintf(&protocol_version, 0, "%.1F", zval_get_double(tmpzval)); in php_stream_url_wrap_http_ex()
420 smart_str_appends(&req_buf, protocol_version); in php_stream_url_wrap_http_ex()
422 efree(protocol_version); in php_stream_url_wrap_http_ex()
/PHP-7.4/sapi/cli/
H A Dphp_cli_server.c121 int protocol_version; member
334 static void append_http_status_line(smart_str *buffer, int protocol_version, int response_code, int… in append_http_status_line() argument
341 smart_str_append_long_ex(buffer, protocol_version / 100, persistent); in append_http_status_line()
343 smart_str_append_long_ex(buffer, protocol_version % 100, persistent); in append_http_status_line()
607 …append_http_status_line(&buffer, client->request.protocol_version, SG(sapi_headers).http_response_… in sapi_cli_server_send_headers()
722 …spprintf(&tmp, 0, "HTTP/%d.%d", client->request.protocol_version / 100, client->request.protocol_v… in sapi_cli_server_register_variables()
1391 req->protocol_version = 0; in php_cli_server_request_ctor()
1800 client->request.protocol_version = parser->http_major * 100 + parser->http_minor; in php_cli_server_client_read_request_on_message_complete()
1929 request_info->proto_num = client->request.protocol_version; in php_cli_server_client_populate_request_info()
2057 append_http_status_line(&buffer, client->request.protocol_version, status, 1); in php_cli_server_send_error_page()
[all …]
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.h64 uint8_t protocol_version; member

Completed in 60 milliseconds

12345