Lines Matching refs:resource

125 	php_url *resource = NULL;  in php_stream_url_wrap_http_ex()  local
159 resource = php_url_parse(path); in php_stream_url_wrap_http_ex()
160 if (resource == NULL) { 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()
185 php_url_free(resource); in php_stream_url_wrap_http_ex()
189 …use_ssl = resource->scheme && (ZSTR_LEN(resource->scheme) > 4) && ZSTR_VAL(resource->scheme)[4] ==… in php_stream_url_wrap_http_ex()
191 if (use_ssl && resource->port == 0) in php_stream_url_wrap_http_ex()
192 resource->port = 443; in php_stream_url_wrap_http_ex()
193 else if (resource->port == 0) in php_stream_url_wrap_http_ex()
194 resource->port = 80; in php_stream_url_wrap_http_ex()
204 …nsport_string, 0, "%s://%s:%d", use_ssl ? "ssl" : "tcp", ZSTR_VAL(resource->host), resource->port); in php_stream_url_wrap_http_ex()
247 ZVAL_STR_COPY(&ssl_proxy_peer_name, resource->host); in php_stream_url_wrap_http_ex()
253 smart_str_appends(&header, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
255 smart_str_append_unsigned(&header, resource->port); in php_stream_url_wrap_http_ex()
401 if (resource->path && ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
402 smart_str_appends(&req_buf, ZSTR_VAL(resource->path)); in php_stream_url_wrap_http_ex()
408 if (resource->query) { in php_stream_url_wrap_http_ex()
410 smart_str_appends(&req_buf, ZSTR_VAL(resource->query)); in php_stream_url_wrap_http_ex()
523 if (((have_header & HTTP_HEADER_AUTH) == 0) && resource->user) { in php_stream_url_wrap_http_ex()
530 php_url_decode(ZSTR_VAL(resource->user), ZSTR_LEN(resource->user)); in php_stream_url_wrap_http_ex()
532 strcpy(scratch, ZSTR_VAL(resource->user)); in php_stream_url_wrap_http_ex()
536 if (resource->pass) { in php_stream_url_wrap_http_ex()
537 php_url_decode(ZSTR_VAL(resource->pass), ZSTR_LEN(resource->pass)); in php_stream_url_wrap_http_ex()
538 strcat(scratch, ZSTR_VAL(resource->pass)); in php_stream_url_wrap_http_ex()
563 smart_str_appends(&req_buf, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
564 if ((use_ssl && resource->port != 443 && resource->port != 0) || in php_stream_url_wrap_http_ex()
565 (!use_ssl && resource->port != 80 && resource->port != 0)) { in php_stream_url_wrap_http_ex()
567 smart_str_append_unsigned(&req_buf, resource->port); in php_stream_url_wrap_http_ex()
851 if (*(location+1) != '\0' && resource->path) { in php_stream_url_wrap_http_ex()
852 char *s = strrchr(ZSTR_VAL(resource->path), '/'); in php_stream_url_wrap_http_ex()
854 s = ZSTR_VAL(resource->path); in php_stream_url_wrap_http_ex()
855 if (!ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
856 zend_string_release_ex(resource->path, 0); in php_stream_url_wrap_http_ex()
857 resource->path = zend_string_init("/", 1, 0); in php_stream_url_wrap_http_ex()
858 s = ZSTR_VAL(resource->path); in php_stream_url_wrap_http_ex()
864 if (resource->path && in php_stream_url_wrap_http_ex()
865 ZSTR_VAL(resource->path)[0] == '/' && in php_stream_url_wrap_http_ex()
866 ZSTR_VAL(resource->path)[1] == '\0') { in php_stream_url_wrap_http_ex()
867 snprintf(loc_path, sizeof(loc_path) - 1, "%s%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
869 snprintf(loc_path, sizeof(loc_path) - 1, "%s/%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
877 if ((use_ssl && resource->port != 443) || (!use_ssl && resource->port != 80)) { in php_stream_url_wrap_http_ex()
878 …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()
880 …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()
886 php_url_free(resource); in php_stream_url_wrap_http_ex()
888 if ((resource = php_url_parse(new_path)) == NULL) { in php_stream_url_wrap_http_ex()
909 CHECK_FOR_CNTRL_CHARS(resource->user); in php_stream_url_wrap_http_ex()
910 CHECK_FOR_CNTRL_CHARS(resource->pass); in php_stream_url_wrap_http_ex()
911 CHECK_FOR_CNTRL_CHARS(resource->path); in php_stream_url_wrap_http_ex()
928 if (resource) { in php_stream_url_wrap_http_ex()
929 php_url_free(resource); in php_stream_url_wrap_http_ex()