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
b1f9424f
Commit
b1f9424f
authored
9 years ago
by
Gisle Vanem
Committed by
Jay Satiro
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
version: Add flag CURL_VERSION_PSL for libpsl
parent
738b0ba0
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
docs/libcurl/curl_version_info.3
+7
-3
7 additions, 3 deletions
docs/libcurl/curl_version_info.3
docs/libcurl/symbols-in-versions
+1
-0
1 addition, 0 deletions
docs/libcurl/symbols-in-versions
include/curl/curl.h
+2
-0
2 additions, 0 deletions
include/curl/curl.h
lib/version.c
+3
-0
3 additions, 0 deletions
lib/version.c
with
13 additions
and
3 deletions
docs/libcurl/curl_version_info.3
+
7
−
3
View file @
b1f9424f
...
...
@@ -76,9 +76,9 @@ typedef struct {
.fi
\fIage\fP describes what the age of this struct is. The number depends on how
new the libcurl you're using is. You are however guaranteed to get a struct
that you
have a matching struct for in the header, as you tell libcurl your
"age" with
the input argument.
new the libcurl you're using is. You are however guaranteed to get a struct
that you
have a matching struct for in the header, as you tell libcurl your
"age" with
the input argument.
\fIversion\fP is just an ascii string for the libcurl version.
...
...
@@ -149,6 +149,10 @@ libcurl was built with support for HTTP2.
.IP CURL_VERSION_UNIX_SOCKETS
libcurl was built with support for Unix domain sockets.
(Added in 7.40.0)
.IP CURL_VERSION_PSL
libcurl was built with support for Mozilla's Public Suffix List. This makes
libcurl ignore cookies with a domain that's on the list.
(Added in 7.47.0)
.RE
\fIssl_version\fP is an ASCII string for the OpenSSL version used. If libcurl
has no SSL support, this is NULL.
...
...
This diff is collapsed.
Click to expand it.
docs/libcurl/symbols-in-versions
+
1
−
0
View file @
b1f9424f
...
...
@@ -779,6 +779,7 @@ CURL_VERSION_LARGEFILE 7.11.1
CURL_VERSION_LIBZ 7.10
CURL_VERSION_NTLM 7.10.6
CURL_VERSION_NTLM_WB 7.22.0
CURL_VERSION_PSL 7.47.0
CURL_VERSION_SPNEGO 7.10.8
CURL_VERSION_SSL 7.10
CURL_VERSION_SSPI 7.13.2
...
...
This diff is collapsed.
Click to expand it.
include/curl/curl.h
+
2
−
0
View file @
b1f9424f
...
...
@@ -2329,6 +2329,8 @@ typedef struct {
#define CURL_VERSION_GSSAPI (1<<17)
/* Built against a GSS-API library */
#define CURL_VERSION_KERBEROS5 (1<<18)
/* Kerberos V5 auth is supported */
#define CURL_VERSION_UNIX_SOCKETS (1<<19)
/* Unix domain sockets support */
#define CURL_VERSION_PSL (1<<20)
/* Mozilla's Public Suffix List, used
for cookie domain verification */
/*
* NAME curl_version_info()
...
...
This diff is collapsed.
Click to expand it.
lib/version.c
+
3
−
0
View file @
b1f9424f
...
...
@@ -305,6 +305,9 @@ static curl_version_info_data version_info = {
#endif
#if defined(USE_UNIX_SOCKETS)
|
CURL_VERSION_UNIX_SOCKETS
#endif
#if defined(USE_LIBPSL)
|
CURL_VERSION_PSL
#endif
,
NULL
,
/* ssl_version */
...
...
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