Lines Matching refs:resource

124 	php_url *resource = NULL;  in php_stream_url_wrap_http_ex()  local
158 resource = php_url_parse(path); in php_stream_url_wrap_http_ex()
159 if (resource == NULL) { in php_stream_url_wrap_http_ex()
163 ZEND_ASSERT(resource->scheme); in php_stream_url_wrap_http_ex()
164 if (!zend_string_equals_literal_ci(resource->scheme, "http") && in php_stream_url_wrap_http_ex()
165 !zend_string_equals_literal_ci(resource->scheme, "https")) { in php_stream_url_wrap_http_ex()
170 php_url_free(resource); in php_stream_url_wrap_http_ex()
183 php_url_free(resource); in php_stream_url_wrap_http_ex()
187 use_ssl = (ZSTR_LEN(resource->scheme) > 4) && ZSTR_VAL(resource->scheme)[4] == 's'; in php_stream_url_wrap_http_ex()
189 if (use_ssl && resource->port == 0) in php_stream_url_wrap_http_ex()
190 resource->port = 443; in php_stream_url_wrap_http_ex()
191 else if (resource->port == 0) in php_stream_url_wrap_http_ex()
192 resource->port = 80; in php_stream_url_wrap_http_ex()
201 …end_strpprintf(0, "%s://%s:%d", use_ssl ? "ssl" : "tcp", ZSTR_VAL(resource->host), resource->port); in php_stream_url_wrap_http_ex()
244 ZVAL_STR_COPY(&ssl_proxy_peer_name, resource->host); in php_stream_url_wrap_http_ex()
250 smart_str_appends(&header, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
252 smart_str_append_unsigned(&header, resource->port); in php_stream_url_wrap_http_ex()
398 if (resource->path && ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
399 smart_str_appends(&req_buf, ZSTR_VAL(resource->path)); in php_stream_url_wrap_http_ex()
405 if (resource->query) { in php_stream_url_wrap_http_ex()
407 smart_str_appends(&req_buf, ZSTR_VAL(resource->query)); in php_stream_url_wrap_http_ex()
520 if (((have_header & HTTP_HEADER_AUTH) == 0) && resource->user) { in php_stream_url_wrap_http_ex()
527 php_url_decode(ZSTR_VAL(resource->user), ZSTR_LEN(resource->user)); in php_stream_url_wrap_http_ex()
529 strcpy(scratch, ZSTR_VAL(resource->user)); in php_stream_url_wrap_http_ex()
533 if (resource->pass) { in php_stream_url_wrap_http_ex()
534 php_url_decode(ZSTR_VAL(resource->pass), ZSTR_LEN(resource->pass)); in php_stream_url_wrap_http_ex()
535 strcat(scratch, ZSTR_VAL(resource->pass)); in php_stream_url_wrap_http_ex()
560 smart_str_appends(&req_buf, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
561 if ((use_ssl && resource->port != 443 && resource->port != 0) || in php_stream_url_wrap_http_ex()
562 (!use_ssl && resource->port != 80 && resource->port != 0)) { in php_stream_url_wrap_http_ex()
564 smart_str_append_unsigned(&req_buf, resource->port); in php_stream_url_wrap_http_ex()
857 if (*(location+1) != '\0' && resource->path) { in php_stream_url_wrap_http_ex()
858 char *s = strrchr(ZSTR_VAL(resource->path), '/'); in php_stream_url_wrap_http_ex()
860 s = ZSTR_VAL(resource->path); in php_stream_url_wrap_http_ex()
861 if (!ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
862 zend_string_release_ex(resource->path, 0); in php_stream_url_wrap_http_ex()
863 resource->path = ZSTR_INIT_LITERAL("/", 0); in php_stream_url_wrap_http_ex()
864 s = ZSTR_VAL(resource->path); in php_stream_url_wrap_http_ex()
870 if (resource->path && in php_stream_url_wrap_http_ex()
871 ZSTR_VAL(resource->path)[0] == '/' && in php_stream_url_wrap_http_ex()
872 ZSTR_VAL(resource->path)[1] == '\0') { in php_stream_url_wrap_http_ex()
873 snprintf(loc_path, sizeof(loc_path) - 1, "%s%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
875 snprintf(loc_path, sizeof(loc_path) - 1, "%s/%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
883 if ((use_ssl && resource->port != 443) || (!use_ssl && resource->port != 80)) { in php_stream_url_wrap_http_ex()
884 …h, sizeof(new_path) - 1, "%s://%s:%d%s", ZSTR_VAL(resource->scheme), ZSTR_VAL(resource->host), res… in php_stream_url_wrap_http_ex()
886 …ntf(new_path, sizeof(new_path) - 1, "%s://%s%s", ZSTR_VAL(resource->scheme), ZSTR_VAL(resource->ho… in php_stream_url_wrap_http_ex()
892 php_url_free(resource); in php_stream_url_wrap_http_ex()
894 if ((resource = php_url_parse(new_path)) == NULL) { in php_stream_url_wrap_http_ex()
915 CHECK_FOR_CNTRL_CHARS(resource->user); in php_stream_url_wrap_http_ex()
916 CHECK_FOR_CNTRL_CHARS(resource->pass); in php_stream_url_wrap_http_ex()
917 CHECK_FOR_CNTRL_CHARS(resource->path); in php_stream_url_wrap_http_ex()
941 if (resource) { in php_stream_url_wrap_http_ex()
942 php_url_free(resource); in php_stream_url_wrap_http_ex()