Install curl-7.21.1.tar.bz2
[msysgit.git] / mingw / share / man / man3 / curl_share_init.3
blob871519cb9b0d2385ac62cda629261930c160f3b6
1 .\"
2 .TH curl_share_init 3 "8 Aug 2003" "libcurl 7.10.7" "libcurl Manual"
3 .SH NAME
4 curl_share_init - Create a shared object
5 .SH SYNOPSIS
6 .B #include <curl/curl.h>
7 .sp
8 .BI "CURLSH *curl_share_init( );"
9 .ad
10 .SH DESCRIPTION
11 This function returns a CURLSH handle to be used as input to all the other
12 share-functions, sometimes referred to as a share handle in some places in the
13 documentation. This init call MUST have a corresponding call to
14 \fIcurl_share_cleanup\fP when all operations using the share are complete.
16 This \fIshare handle\fP is what you pass to curl using the \fICURLOPT_SHARE\fP
17 option with \fIcurl_easy_setopt(3)\fP, to make that specific curl handle use
18 the data in this share.
19 .SH RETURN VALUE
20 If this function returns NULL, something went wrong (out of memory, etc.)
21 and therefore the share object was not created.
22 .SH "SEE ALSO"
23 .BR curl_share_cleanup "(3), " curl_share_setopt "(3)"