Lines Matching refs:location
158 char location[HTTP_HEADER_BLOCK_SIZE]; in php_stream_url_wrap_http_ex() local
663 location[0] = '\0'; in php_stream_url_wrap_http_ex()
803 strlcpy(location, http_header_value, sizeof(location)); in php_stream_url_wrap_http_ex()
852 if (!reqok || (location[0] != '\0' && follow_location)) { in php_stream_url_wrap_http_ex()
857 if (location[0] != '\0') in php_stream_url_wrap_http_ex()
858 php_stream_notify_info(context, PHP_STREAM_NOTIFY_REDIRECTED, location, 0); in php_stream_url_wrap_http_ex()
868 if (location[0] != '\0') { in php_stream_url_wrap_http_ex()
874 if (strlen(location)<8 || (strncasecmp(location, "http://", sizeof("http://")-1) && in php_stream_url_wrap_http_ex()
875 strncasecmp(location, "https://", sizeof("https://")-1) && in php_stream_url_wrap_http_ex()
876 strncasecmp(location, "ftp://", sizeof("ftp://")-1) && in php_stream_url_wrap_http_ex()
877 strncasecmp(location, "ftps://", sizeof("ftps://")-1))) in php_stream_url_wrap_http_ex()
879 if (*location != '/') { in php_stream_url_wrap_http_ex()
880 if (*(location+1) != '\0' && resource->path) { in php_stream_url_wrap_http_ex()
896 snprintf(loc_path, sizeof(loc_path) - 1, "%s%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
898 snprintf(loc_path, sizeof(loc_path) - 1, "%s/%s", ZSTR_VAL(resource->path), location); in php_stream_url_wrap_http_ex()
901 snprintf(loc_path, sizeof(loc_path) - 1, "/%s", location); in php_stream_url_wrap_http_ex()
904 strlcpy(loc_path, location, sizeof(loc_path)); in php_stream_url_wrap_http_ex()
912 strlcpy(new_path, location, sizeof(new_path)); in php_stream_url_wrap_http_ex()