/PHP-8.3/ext/standard/ |
H A D | http_fopen_wrapper.c | 167 (tmpzval = php_stream_context_get_option(context, wrapper->wops->label, "proxy")) == NULL || in php_stream_url_wrap_http_ex() 195 (tmpzval = php_stream_context_get_option(context, wrapper->wops->label, "proxy")) != NULL && in php_stream_url_wrap_http_ex() 243 if (!context || (tmpzval = php_stream_context_get_option(context, "ssl", "peer_name")) == NULL) { in php_stream_url_wrap_http_ex() 256 if (context && (tmpzval = php_stream_context_get_option(context, "http", "header")) != NULL) { in php_stream_url_wrap_http_ex() 366 if (context && (tmpzval = php_stream_context_get_option(context, "http", "method")) != NULL) { in php_stream_url_wrap_http_ex() 387 (tmpzval = php_stream_context_get_option(context, "http", "request_fulluri")) != NULL) { in php_stream_url_wrap_http_ex() 412 …if (context && (tmpzval = php_stream_context_get_option(context, "http", "protocol_version")) != N… in php_stream_url_wrap_http_ex() 424 if (context && (tmpzval = php_stream_context_get_option(context, "http", "header")) != NULL) { in php_stream_url_wrap_http_ex() 580 (ua_zval = php_stream_context_get_option(context, "http", "user_agent")) != NULL && in php_stream_url_wrap_http_ex() 615 (tmpzval = php_stream_context_get_option(context, "http", "content")) != NULL && in php_stream_url_wrap_http_ex() [all …]
|
H A D | ftp_fopen_wrapper.c | 445 (tmpzval = php_stream_context_get_option(context, "ftp", "proxy")) != NULL) { in php_stream_url_wrap_ftp() 490 if (context && (tmpzval = php_stream_context_get_option(context, "ftp", "overwrite")) != NULL) { in php_stream_url_wrap_ftp() 521 (tmpzval = php_stream_context_get_option(context, "ftp", "resume_pos")) != NULL && in php_stream_url_wrap_ftp()
|
H A D | php_fopen_wrapper.c | 418 zval *blocking_pipes = php_stream_context_get_option(context, "pipe", "blocking"); in php_stream_url_wrap_php()
|
H A D | streamsfuncs.c | 43 …per, name, val) (PHP_STREAM_CONTEXT(stream) && NULL != (val = php_stream_context_get_option(PHP_ST…
|
/PHP-8.3/ext/standard/tests/streams/ |
H A D | bug49936_win32.phpt | 2 Bug #49936 (crash with ftp stream in php_stream_context_get_option())
|
/PHP-8.3/main/streams/ |
H A D | xp_socket.c | 696 …&& (tmpzval = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "socket", "ipv6_v6only")) … in php_tcp_sockop_bind() 706 …&& (tmpzval = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "socket", "so_reuseport"))… in php_tcp_sockop_bind() 716 …&& (tmpzval = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "socket", "so_broadcast"))… in php_tcp_sockop_bind() 780 …if (PHP_STREAM_CONTEXT(stream) && (tmpzval = php_stream_context_get_option(PHP_STREAM_CONTEXT(stre… in php_tcp_sockop_connect() 794 …&& (tmpzval = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "socket", "so_broadcast"))… in php_tcp_sockop_connect() 807 …&& (tmpzval = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "socket", "tcp_nodelay")) … in php_tcp_sockop_connect() 860 …(tmpzval = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "socket", "tcp_nodelay")) != … in php_tcp_sockop_accept()
|
H A D | php_stream_context.h | 58 PHPAPI zval *php_stream_context_get_option(php_stream_context *context,
|
H A D | transports.c | 165 …if (PHP_STREAM_CONTEXT(stream) && (zbacklog = php_stream_context_get_option(PHP_STREAM_CONTEXT(str… in _php_stream_xport_create()
|
H A D | streams.c | 2403 PHPAPI zval *php_stream_context_get_option(php_stream_context *context, function
|
/PHP-8.3/ext/openssl/ |
H A D | xp_ssl.c | 1152 if (PHP_STREAM_CONTEXT(stream) && (val = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), in php_openssl_limit_handshake_reneg() 1196 NULL != (val = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "ssl", "reneg_limit")) in php_openssl_init_server_reneg_limit() 1207 NULL != (val = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "ssl", "reneg_window")) in php_openssl_init_server_reneg_limit() 1252 zval *zdhpath = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "ssl", "dh_param"); in php_openssl_set_server_dh_param() 1317 zvcurve = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "ssl", "ecdh_curve"); in php_openssl_set_server_ecdh_curve() 1362 if (php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "ssl", "rsa_key_size") != NULL) { in php_openssl_set_server_specific_opts() 1370 zv = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "ssl", "single_dh_use"); in php_openssl_set_server_specific_opts() 1375 zv = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), "ssl", "honor_cipher_order"); in php_openssl_set_server_specific_opts() 1857 if (NULL != (val = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), in php_openssl_capture_peer_certs() 1870 if (NULL != (val = php_stream_context_get_option(PHP_STREAM_CONTEXT(stream), in php_openssl_capture_peer_certs() [all …]
|
/PHP-8.3/ext/zlib/ |
H A D | zlib_fopen_wrapper.c | 139 zval *zlevel = context ? php_stream_context_get_option(context, "zlib", "level") : NULL; in php_stream_gzopen()
|
/PHP-8.3/ext/soap/ |
H A D | php_http.c | 154 if (context && (tmp = php_stream_context_get_option(context, "http", "header")) != NULL) { in http_context_headers() 252 if (!context || (tmp = php_stream_context_get_option(context, "ssl", "peer_name")) == NULL) { in http_connect() 449 (tmp = php_stream_context_get_option(context, "http", "max_redirects")) != NULL) { in make_http_soap_request() 560 (tmp = php_stream_context_get_option(context, "http", "protocol_version")) != NULL && in make_http_soap_request() 615 (tmp = php_stream_context_get_option(context, "http", "user_agent")) != NULL && in make_http_soap_request() 634 (tmp = php_stream_context_get_option(context, "http", "content_type")) != NULL && in make_http_soap_request() 651 (tmp = php_stream_context_get_option(context, "http", "content_type")) != NULL && in make_http_soap_request()
|
H A D | php_sdl.c | 286 (header = php_stream_context_get_option(ctx->context, "http", "header")) != NULL && in sdl_set_uri_credentials() 3308 if ((tmp = php_stream_context_get_option(context, "http", "protocol_version")) == NULL) { in get_sdl()
|
/PHP-8.3/ext/zip/ |
H A D | zip_stream.c | 332 if (context && NULL != (tmpzval = php_stream_context_get_option(context, "zip", "password"))) { in php_stream_zip_opener()
|
/PHP-8.3/sapi/phpdbg/ |
H A D | phpdbg.c | 1108 zval *blocking_pipes = php_stream_context_get_option(context, "pipe", "blocking"); in phpdbg_stream_url_wrap_php()
|