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
99c0a1a7
Commit
99c0a1a7
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
removed easy handle argument from proto
parent
5acf997e
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/libcurl/curl_multi_socket.3
+5
-8
5 additions, 8 deletions
docs/libcurl/curl_multi_socket.3
with
5 additions
and
8 deletions
docs/libcurl/curl_multi_socket.3
+
5
−
8
View file @
99c0a1a7
...
...
@@ -8,7 +8,6 @@ curl_multi_socket \- reads/writes available data
CURLMcode curl_multi_socket(CURLM * multi_handle,
curl_socket_t sockfd,
CURL *easy,
curl_socket_callback callback,
void *userp);
...
...
@@ -19,11 +18,10 @@ CURLMcode curl_multi_socket_all(CURLM *multi_handle,
Alternative versions of \fIcurl_multi_perform()\fP that allows the application
to pass in one of the file descriptors/sockets that have been detected to have
\&"action" on them and let libcurl perform. This allows libcurl to not have to
scan through all possible file descriptors to check for action. The
application is recommended to pass in the \fBeasy\fP argument (or set it to
CURL_EASY_NONE) to make libcurl figure out the internal structure even faster
and easier. If the easy argument is set to something else than
CURL_EASY_NONE, the \fBsockfd\fP argument will be ignored by libcurl.
scan through all possible file descriptors to check for action. When the
application has detected on a socket handled by libcurl, call
\fIcurl_multi_perform()\fP with the \fBsockfd\fP argument set to the socket
with the action.
These functions inform the application about updates in the socket (file
descriptor) status by doing none, one or multiple calls to the
...
...
@@ -39,8 +37,7 @@ transfers instead of just a single one, you call
An application should call \fBcurl_multi_timeout(3)\fP to figure out how long
it should wait for socket actions \- at most \- before doing the timeout
action: call the \fBcurl_multi_socket(3)\fP function with the \fBsockfd\fP
argument set to CURL_SOCKET_TIMEOUT and the \fBeasy\fP argument set to
CURL_EASY_TIMEOUT.
argument set to CURL_SOCKET_TIMEOUT.
\fBcurl_multi_perform(3)\fP is the exact equivalent of calling
\fBcurl_multi_socket_all\fP(handle, NULL, NULL);
...
...
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