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
685b180a
Commit
685b180a
authored
23 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
7.9.4-pre2
parent
9dab8508
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES
+29
-0
29 additions, 0 deletions
CHANGES
docs/libcurl.3
+4
-5
4 additions, 5 deletions
docs/libcurl.3
include/curl/curl.h
+1
-1
1 addition, 1 deletion
include/curl/curl.h
src/version.h
+1
-1
1 addition, 1 deletion
src/version.h
with
35 additions
and
7 deletions
CHANGES
+
29
−
0
View file @
685b180a
...
...
@@ -6,12 +6,41 @@
History of Changes
Daniel (3 February 2002)
- Eric Melville provided a few spelling corrections in the curl man page.
Daniel (1 February 2002)
- Andreas Damm corrected the unconditional use of gmtime() in getdate, it now
uses gmtime_r() on all hosts that have it.
Daniel (31 January 2002)
- An anonymous bug report identified a problem in the DNS caching which made it
sometimes allocate one byte too little to store the cache entry in. This
happened when the port number started with 1!
- Albert Chin provided a patch that improves the gethostbyname_r() configure
check on HP-UX 11.00.
Version 7.9.4-pre1
Daniel (30 January 2002)
- Georg Horn found another way the SSL reading failed due to the non-blocking
state of the sockets! I fixed.
Daniel (29 January 2002)
- Multipart formposts now send the full request properly, including the CRLF.
They were previously treated as part of the post data.
- The upload byte counter bugged.
- T. Bharath pointed out that we seed SSL on every connect, which is a time-
consuming operation that should only be needed to do once. We patched
libcurl to now only seed on the first connect when unseeded. The seeded
status is global so it'll now only happen once during a program's life time.
If the random_file or egdsocket is set, the seed will be re-made though.
- Giaslas Georgios introduced CURLINFO_CONTENT_TYPE that lets
curl_easy_getinfo() read the content-type from the previous request.
...
...
This diff is collapsed.
Click to expand it.
docs/libcurl.3
+
4
−
5
View file @
685b180a
...
...
@@ -6,8 +6,10 @@
.SH NAME
libcurl \- client-side URL transfers
.SH DESCRIPTION
This is an overview on how to use libcurl in your c/c++ programs. There are
specific man pages for each function mentioned in here.
This is an overview on how to use libcurl in your C programs. There are
specific man pages for each function mentioned in here. There's also the
libcurl-the-guide document for a complete tutorial to programming with
libcurl.
libcurl can also be used directly from within your Java, PHP, Perl, Ruby or
Tcl programs as well, look elsewhere for documentation on this!
...
...
@@ -56,9 +58,6 @@ get information about a performed transfer
.B curl_formadd()
helps building a HTTP form POST
.TP
.B curl_formparse()
helps building a HTTP form POST (deprecated since 7.9 use curl_formadd()!)
.TP
.B curl_formfree()
free a list built with curl_formparse()/curl_formadd()
.TP
...
...
This diff is collapsed.
Click to expand it.
include/curl/curl.h
+
1
−
1
View file @
685b180a
...
...
@@ -613,7 +613,7 @@ CURLcode curl_global_init(long flags);
void
curl_global_cleanup
(
void
);
/* This is the version number */
#define LIBCURL_VERSION "7.9.4-pre
1
"
#define LIBCURL_VERSION "7.9.4-pre
2
"
#define LIBCURL_VERSION_NUM 0x070904
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
...
...
This diff is collapsed.
Click to expand it.
src/version.h
+
1
−
1
View file @
685b180a
#define CURL_NAME "curl"
#define CURL_VERSION "7.9.
3
"
#define CURL_VERSION "7.9.
4-pre2
"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
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