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
a44a8cef
Commit
a44a8cef
authored
24 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Cris Bailiff's 1.1.4 changes: Fix case where curl_slists such as 'HTTPHEADERS'
need to be re-set over persistant requests
parent
97ad165a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
perl/Curl_easy/Changes
+4
-0
4 additions, 0 deletions
perl/Curl_easy/Changes
perl/Curl_easy/easy.pm
+1
-1
1 addition, 1 deletion
perl/Curl_easy/easy.pm
perl/Curl_easy/easy.xs
+5
-0
5 additions, 0 deletions
perl/Curl_easy/easy.xs
with
10 additions
and
1 deletion
perl/Curl_easy/Changes
+
4
−
0
View file @
a44a8cef
Revision history for Perl extension Curl::easy.
Check out the file README for more info.
1.1.4 Fri Apr 20 2001: - Cris Bailiff <c.bailiff@devsecure.com>
- Fix case where curl_slists such as 'HTTPHEADERS' need to
be re-set over persistant requests
1.1.3 Wed Apr 18 2001: - Cris Bailiff <c.bailiff@devsecure.com>
- Change/shorten module function names: Curl::easy::curl_easy_setopt
becomes Curl::easy::setopt etc. This requires minor changes to existing
...
...
This diff is collapsed.
Click to expand it.
perl/Curl_easy/easy.pm
+
1
−
1
View file @
a44a8cef
...
...
@@ -95,7 +95,7 @@ CURLINFO_REQUEST_SIZE
USE_INTERNAL_VARS
)
;
$VERSION
=
'
1.1.
3
';
$VERSION
=
'
1.1.
4
';
$
Curl::easy::
headers
=
"";
$
Curl::easy::
content
=
"";
...
...
This diff is collapsed.
Click to expand it.
perl/Curl_easy/easy.xs
+
5
−
0
View file @
a44a8cef
...
...
@@ -616,6 +616,11 @@ CODE:
case CURLOPT_POSTQUOTE:
slist = &postquote; break;
}
/* free any previous list */
if (*slist) {
curl_slist_free_all(*slist);
*slist=NULL;
}
/* ...store the values into it... */
for (;;) {
SV *sv = av_shift(array);
...
...
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