~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

Viewing changes to docs/libcurl/curl_multi_assign.3

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2009-04-29 11:10:29 UTC
  • mfrom: (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090429111029-2j5eiyokfw2bw049
Tags: 7.19.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* drop debian/patches/security_CVE-2009-0037.patch 
  - this patch is part of 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.\" $Id: curl_multi_assign.3,v 1.1 2006-07-26 22:19:42 bagder Exp $
 
1
.\" $Id: curl_multi_assign.3,v 1.2 2008-12-28 21:56:56 bagder Exp $
2
2
.\"
3
3
.TH curl_multi_assign 3 "9 Jul 2006" "libcurl 7.16.0" "libcurl Manual"
4
4
.SH NAME
5
 
curl_multi_assign \- set data to associated with an internal socket
 
5
curl_multi_assign \- set data to association with an internal socket
6
6
.SH SYNOPSIS
7
7
#include <curl/curl.h>
8
8
 
34
34
semi-dynamic data for each socket that we must wait for action on when using
35
35
the \fIcurl_multi_socket(3)\fP approach.
36
36
 
37
 
When our socket-callback get called by libcurl and we get to know about yet
 
37
When our socket-callback gets called by libcurl and we get to know about yet
38
38
another socket to wait for, we can use \fIcurl_multi_assign(3)\fP to point out
39
39
the particular data so that when we get updates about this same socket again,
40
40
we don't have to find the struct associated with this socket by ourselves.