Lines Matching refs:location
158 char location[HTTP_HEADER_BLOCK_SIZE]; in php_stream_url_wrap_http_ex() local
651 location[0] = '\0'; in php_stream_url_wrap_http_ex()
791 strlcpy(location, http_header_value, sizeof(location)); in php_stream_url_wrap_http_ex()
840 if (!reqok || (location[0] != '\0' && follow_location)) { in php_stream_url_wrap_http_ex()
845 if (location[0] != '\0') in php_stream_url_wrap_http_ex()
846 php_stream_notify_info(context, PHP_STREAM_NOTIFY_REDIRECTED, location, 0); in php_stream_url_wrap_http_ex()
856 if (location[0] != '\0') { in php_stream_url_wrap_http_ex()
862 if (strlen(location)<8 || (strncasecmp(location, "http://", sizeof("http://")-1) && in php_stream_url_wrap_http_ex()
863 strncasecmp(location, "https://", sizeof("https://")-1) && in php_stream_url_wrap_http_ex()
864 strncasecmp(location, "ftp://", sizeof("ftp://")-1) && in php_stream_url_wrap_http_ex()
865 strncasecmp(location, "ftps://", sizeof("ftps://")-1))) in php_stream_url_wrap_http_ex()
867 if (*location != '/') { in php_stream_url_wrap_http_ex()
868 if (*(location+1) != '\0' && resource->path) { in php_stream_url_wrap_http_ex()
884 snprintf(loc_path, sizeof(loc_path) - 1, "%s%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
886 snprintf(loc_path, sizeof(loc_path) - 1, "%s/%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
889 snprintf(loc_path, sizeof(loc_path) - 1, "/%s", location); in php_stream_url_wrap_http_ex()
892 strlcpy(loc_path, location, sizeof(loc_path)); in php_stream_url_wrap_http_ex()
900 strlcpy(new_path, location, sizeof(new_path)); in php_stream_url_wrap_http_ex()