Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
76c36688
Commit
76c36688
authored
21 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Makes CURLINFO_CONTENT_LENGTH_DOWNLOAD work even if CURLOPT_NOBODY is set
true.
parent
651c8d3b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/transfer.c
+8
-4
8 additions, 4 deletions
lib/transfer.c
with
8 additions
and
4 deletions
lib/transfer.c
+
8
−
4
View file @
76c36688
...
...
@@ -507,10 +507,14 @@ CURLcode Curl_readwrite(struct connectdata *conn,
if
(
conn
->
bits
.
chunk
)
conn
->
size
=-
1
;
if
(
-
1
!=
conn
->
size
)
{
Curl_pgrsSetDownloadSize
(
data
,
conn
->
size
);
conn
->
maxdownload
=
conn
->
size
;
}
}
if
(
-
1
!=
conn
->
size
)
{
/* We do this operation even if no_body is true, since this
data might be retrieved later with curl_easy_getinfo()
and its CURLINFO_CONTENT_LENGTH_DOWNLOAD option. */
Curl_pgrsSetDownloadSize
(
data
,
conn
->
size
);
conn
->
maxdownload
=
conn
->
size
;
}
/* If max download size is *zero* (nothing) we already
have nothing and can safely return ok now! */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment