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 if (!zend_string_equals_literal_ci(resource->scheme, "http") && in php_stream_url_wrap_http_ex()
164 !zend_string_equals_literal_ci(resource->scheme, "https")) { in php_stream_url_wrap_http_ex()
169 php_url_free(resource); in php_stream_url_wrap_http_ex()
182 php_url_free(resource); in php_stream_url_wrap_http_ex()
186 …use_ssl = resource->scheme && (ZSTR_LEN(resource->scheme) > 4) && ZSTR_VAL(resource->scheme)[4] ==… in php_stream_url_wrap_http_ex()
188 if (use_ssl && resource->port == 0) in php_stream_url_wrap_http_ex()
189 resource->port = 443; in php_stream_url_wrap_http_ex()
190 else if (resource->port == 0) in php_stream_url_wrap_http_ex()
191 resource->port = 80; in php_stream_url_wrap_http_ex()
200 …end_strpprintf(0, "%s://%s:%d", use_ssl ? "ssl" : "tcp", ZSTR_VAL(resource->host), resource->port); in php_stream_url_wrap_http_ex()
243 ZVAL_STR_COPY(&ssl_proxy_peer_name, resource->host); in php_stream_url_wrap_http_ex()
249 smart_str_appends(&header, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
251 smart_str_append_unsigned(&header, resource->port); in php_stream_url_wrap_http_ex()
397 if (resource->path && ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
398 smart_str_appends(&req_buf, ZSTR_VAL(resource->path)); in php_stream_url_wrap_http_ex()
404 if (resource->query) { in php_stream_url_wrap_http_ex()
406 smart_str_appends(&req_buf, ZSTR_VAL(resource->query)); in php_stream_url_wrap_http_ex()
519 if (((have_header & HTTP_HEADER_AUTH) == 0) && resource->user) { in php_stream_url_wrap_http_ex()
526 php_url_decode(ZSTR_VAL(resource->user), ZSTR_LEN(resource->user)); in php_stream_url_wrap_http_ex()
528 strcpy(scratch, ZSTR_VAL(resource->user)); in php_stream_url_wrap_http_ex()
532 if (resource->pass) { in php_stream_url_wrap_http_ex()
533 php_url_decode(ZSTR_VAL(resource->pass), ZSTR_LEN(resource->pass)); in php_stream_url_wrap_http_ex()
534 strcat(scratch, ZSTR_VAL(resource->pass)); in php_stream_url_wrap_http_ex()
559 smart_str_appends(&req_buf, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
560 if ((use_ssl && resource->port != 443 && resource->port != 0) || in php_stream_url_wrap_http_ex()
561 (!use_ssl && resource->port != 80 && resource->port != 0)) { in php_stream_url_wrap_http_ex()
563 smart_str_append_unsigned(&req_buf, resource->port); in php_stream_url_wrap_http_ex()
867 if (*(location+1) != '\0' && resource->path) { in php_stream_url_wrap_http_ex()
868 char *s = strrchr(ZSTR_VAL(resource->path), '/'); in php_stream_url_wrap_http_ex()
870 s = ZSTR_VAL(resource->path); in php_stream_url_wrap_http_ex()
871 if (!ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
872 zend_string_release_ex(resource->path, 0); in php_stream_url_wrap_http_ex()
873 resource->path = zend_string_init("/", 1, 0); in php_stream_url_wrap_http_ex()
874 s = ZSTR_VAL(resource->path); in php_stream_url_wrap_http_ex()
880 if (resource->path && in php_stream_url_wrap_http_ex()
881 ZSTR_VAL(resource->path)[0] == '/' && in php_stream_url_wrap_http_ex()
882 ZSTR_VAL(resource->path)[1] == '\0') { in php_stream_url_wrap_http_ex()
883 snprintf(loc_path, sizeof(loc_path) - 1, "%s%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
885 snprintf(loc_path, sizeof(loc_path) - 1, "%s/%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
893 if ((use_ssl && resource->port != 443) || (!use_ssl && resource->port != 80)) { in php_stream_url_wrap_http_ex()
894 …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()
896 …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()
902 php_url_free(resource); in php_stream_url_wrap_http_ex()
904 if ((resource = php_url_parse(new_path)) == NULL) { in php_stream_url_wrap_http_ex()
925 CHECK_FOR_CNTRL_CHARS(resource->user); in php_stream_url_wrap_http_ex()
926 CHECK_FOR_CNTRL_CHARS(resource->pass); in php_stream_url_wrap_http_ex()
927 CHECK_FOR_CNTRL_CHARS(resource->path); in php_stream_url_wrap_http_ex()
951 if (resource) { in php_stream_url_wrap_http_ex()
952 php_url_free(resource); in php_stream_url_wrap_http_ex()