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
e9eb5230
Commit
e9eb5230
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
two more actual FAQs
parent
8501ae74
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
docs/FAQ
+17
-1
17 additions, 1 deletion
docs/FAQ
with
17 additions
and
1 deletion
docs/FAQ
+
17
−
1
View file @
e9eb5230
Updated:
December 21
, 200
4
(http://curl.haxx.se/docs/faq.html)
Updated:
April 5
, 200
5
(http://curl.haxx.se/docs/faq.html)
_ _ ____ _
_ _ ____ _
___| | | | _ \| |
___| | | | _ \| |
/ __| | | | |_) | |
/ __| | | | |_) | |
...
@@ -43,6 +43,7 @@ FAQ
...
@@ -43,6 +43,7 @@ FAQ
3.15 Can I do recursive fetches with curl?
3.15 Can I do recursive fetches with curl?
3.16 What certificates do I need when I use SSL?
3.16 What certificates do I need when I use SSL?
3.17 How do I list the root dir of an FTP server?
3.17 How do I list the root dir of an FTP server?
3.18 Can I use curl to send a POST/PUT and not wait for a response?
4. Running Problems
4. Running Problems
4.1 Problems connecting to SSL servers.
4.1 Problems connecting to SSL servers.
...
@@ -74,6 +75,7 @@ FAQ
...
@@ -74,6 +75,7 @@ FAQ
5.7 Link errors when building libcurl on Windows!
5.7 Link errors when building libcurl on Windows!
5.8 libcurl.so.3: open failed: No such file or directory
5.8 libcurl.so.3: open failed: No such file or directory
5.9 How does libcurl resolve host names?
5.9 How does libcurl resolve host names?
5.10 How do I prevent libcurl from writing the response to stdout?
6. License Issues
6. License Issues
6.1 I have a GPL program, can I use the libcurl library?
6.1 I have a GPL program, can I use the libcurl library?
...
@@ -533,6 +535,10 @@ FAQ
...
@@ -533,6 +535,10 @@ FAQ
curl ftp://ftp.sunet.se//tmp/
curl ftp://ftp.sunet.se//tmp/
3.18 Can I use curl to send a POST/PUT and not wait for a response?
No.
4. Running Problems
4. Running Problems
...
@@ -877,6 +883,16 @@ FAQ
...
@@ -877,6 +883,16 @@ FAQ
A - gethostbyname() on plain ipv4 windows hosts
A - gethostbyname() on plain ipv4 windows hosts
B - getaddrinfo() on ipv6-enabled windows hosts
B - getaddrinfo() on ipv6-enabled windows hosts
Also note that libcurl never resolves or reverse-lookups addresses given as
pure numbers, such as 127.0.0.1 or ::1.
5.10 How do I prevent libcurl from writing the response to stdout?
libcurl provides a default built-in write function that writes received data
to stdout. Set a WRITEFUNCTION to receive the data, or possibly set
WRITEDATA to a different FILE * handle.
6. License Issues
6. License Issues
Curl and libcurl are released under a MIT/X derivate license. The license is
Curl and libcurl are released under a MIT/X derivate license. The license is
...
...
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