.BI "const char *curl_share_strerror(CURLSHcode " errornum ");"
.SH DESCRIPTION
The curl_share_strerror() function returns a string describing the CURLSHcode
error code passed in the argument \fIerrornum\fP.
.SH AVAILABILITY
This function was added in libcurl 7.12.0
.SH RETURN VALUE
A pointer to a zero terminated string.
.SH "SEE ALSO"
.BR libcurl-errors "(3), " curl_multi_strerror "(3), " curl_easy_strerror "(3)"
curl-7.35.0/docs/libcurl/curl_free.pdf 0000644 0001750 0001750 00000006323 12272124472 014530 0000000 0000000 %PDF-1.4
%Çì¢
5 0 obj
<>
stream
xœ“ÛŽÓ0†ïó#qƒ×Î9!èEÑn»4ámr·
Jœn¬öíçÐH\ K±dOf¾ÿŸñ0Êé5îiiÌ6ƒÁÁx2x ã––ð!Á€P${cø‡C`C94Œ )
î¹”<$íêâǾ–rKœ E¾Ó'¦e{Œ2{¡:QÀm˜ù=ùlXŒÚó¥X.Âr4òtELJäÎ «¹ù ñ–{Ô‹¤H2ƒÜ/ÌäçŸÍ¨Ë°¸¯™fº µL‘—Pʲª_ =ŠŽ¢”
ª]+r%3<®«îp1ñC*Šb¨t…f!›Å}ö(ñ·Õú!^Æ—°„!¯r•]&áN9Óz|¯Ã-Ý”f»½Ö_Õ¤5¢Ñ ô‘äÙdšÉC¢ƒô(jxÓ›7Ûp6Vêy£=§¶¾ÅálÍ·+â®KïJÕ§Eüq³|H–ëÕÓaØXßù£û“ÑÍ9MMËc>µ#Ÿ|mäõ°àHåªi¥È ÚÃù¬Î#ÔˆÝû(.F¢næDá S»0º*TUŠ"—ÍÀ˜
…ðMW´˜¾*!Ë÷¦®Ev@ö²–*ÅÈ\MºJ¡ÄA–Rµ¨¬}Öâ^ª®q:y*Ú¼RX!ð&Ši"FÍôß“5Lq¼XÀü.^±çn;hÓ9_oT§d“ŠÓø²nzf
ÑžP˜ªÉõ€rfbE„“ͻ،9=¶ëO¯ët‹Äø‚ë7ÿ&;endstream
endobj
6 0 obj
565
endobj
4 0 obj
<>
/Contents 5 0 R
>>
endobj
3 0 obj
<< /Type /Pages /Kids [
4 0 R
] /Count 1
>>
endobj
1 0 obj
<>
endobj
7 0 obj
<>endobj
11 0 obj
<>
endobj
12 0 obj
<>
endobj
10 0 obj
<>
endobj
9 0 obj
<>
endobj
8 0 obj
<>
endobj
13 0 obj
<>stream
2014-01-29T08:09:46+01:00
2014-01-29T08:09:46+01:00
groff version 1.22.2
Untitled
endstream
endobj
2 0 obj
<>endobj
xref
0 14
0000000000 65535 f
0000000888 00000 n
0000002696 00000 n
0000000829 00000 n
0000000669 00000 n
0000000015 00000 n
0000000650 00000 n
0000000953 00000 n
0000001207 00000 n
0000001142 00000 n
0000001074 00000 n
0000000994 00000 n
0000001024 00000 n
0000001273 00000 n
trailer
<< /Size 14 /Root 1 0 R /Info 2 0 R
/ID [<234578308CBDACCE73B2977122757665><234578308CBDACCE73B2977122757665>]
>>
startxref
2850
%%EOF
curl-7.35.0/docs/libcurl/curl_easy_send.html 0000644 0001750 0001750 00000007576 12272124467 015773 0000000 0000000
curl_easy_send man page
NAME
curl_easy_send - sends raw data over an "easy" connection
SYNOPSIS
#include <curl/easy.h>
CURLcode curl_easy_send( CURL * curl , const void * buffer , size_t buflen , size_t * n );
DESCRIPTION
This function sends arbitrary data over the established connection. You may use it together with curl_easy_recv(3) to implement custom protocols using libcurl. This functionality can be particularly useful if you use proxies and/or SSL encryption: libcurl will take care of proxy negotiation and connection set-up.
buffer is a pointer to the data of length buflen that you want sent. The variable n points to will receive the number of sent bytes.
To establish the connection, set CURLOPT_CONNECT_ONLY option before calling curl_easy_perform(3). Note that curl_easy_send(3) will not work on connections that were created without this option.
You must ensure that the socket is writable before calling curl_easy_send(3), otherwise the call will return CURLE_AGAIN - the socket is used in non-blocking mode internally. Use curl_easy_getinfo(3) with CURLINFO_LASTSOCKET to obtain the socket; use your operating system facilities like select(2) to check if it can be written to.
AVAILABILITY
Added in 7.18.2.
RETURN VALUE
On success, returns CURLE_OK and stores the number of bytes actually sent into *n. Note that this may very well be less than the amount you wanted to send.
On failure, returns the appropriate error code.
If there's no socket available to use from the previous transfer, this function returns CURLE_UNSUPPORTED_PROTOCOL.
EXAMPLE
See sendrecv.c in docs/examples directory for usage example.
SEE ALSO
curl_easy_setopt (3) curl_easy_perform (3) curl_easy_getinfo (3) curl_easy_recv (3)
This HTML page was made with roffit.
curl-7.35.0/docs/libcurl/curl_easy_reset.3 0000644 0001750 0001750 00000003475 12213173003 015335 0000000 0000000 .\" **************************************************************************
.\" * _ _ ____ _
.\" * Project ___| | | | _ \| |
.\" * / __| | | | |_) | |
.\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____|
.\" *
.\" * Copyright (C) 1998 - 2011, Daniel Stenberg, , et al.
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
.\" * are also available at http://curl.haxx.se/docs/copyright.html.
.\" *
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
.\" * copies of the Software, and permit persons to whom the Software is
.\" * furnished to do so, under the terms of the COPYING file.
.\" *
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
.\" * KIND, either express or implied.
.\" *
.\" **************************************************************************
.TH curl_easy_reset 3 "31 July 2004" "libcurl 7.12.1" "libcurl Manual"
.SH NAME
curl_easy_reset - reset all options of a libcurl session handle
.SH SYNOPSIS
.B #include
.BI "void curl_easy_reset(CURL *"handle ");"
.SH DESCRIPTION
Re-initializes all options previously set on a specified CURL handle to the
default values. This puts back the handle to the same state as it was in when
it was just created with \fIcurl_easy_init(3)\fP.
It does not change the following information kept in the handle: live
connections, the Session ID cache, the DNS cache, the cookies and shares.
.SH AVAILABILITY
This function was added in libcurl 7.12.1
.SH RETURN VALUE
Nothing
.SH "SEE ALSO"
.BR curl_easy_init "(3)," curl_easy_cleanup "(3)," curl_easy_setopt "(3)
curl-7.35.0/docs/libcurl/curl_easy_duphandle.pdf 0000644 0001750 0001750 00000007675 12272124471 016606 0000000 0000000 %PDF-1.4
%Çì¢
5 0 obj
<>
stream
xœVÛnã6}÷WèÃJ‹!uZȦ~Háu¶¶R`‘Yf,u%JÑ%†ÿ¾CR´¤\€Â€m‰çÌœ3gôŒ¦ˆˆÏð›–‹«m€Ží‚ ãâyAå"~Ò}‰aC(nÄOõE‚ÈÁa„âñ°¢ø´x0Ò¾)~°¤=ÿ8ôu–ðCÁ
çÑDE¾k¦e{_Þ'úèóŸøÏ…E°M!F
"€€#O p|¯ÆæÚü¨a•zØ‹@Æ×•ÿ;Álì’ YÔËDà|&²ÐMQq†µ¬móŠ#µA:a‹ú8”awß7wßv·»qÛ ulü’ó´èý&¿_8û]l·]™ÏÍýv>¿[µé^m)Ñ\ø>vuÒ¯!ÊÄìËæ¯oáÛv„CYv8¤ðÇjw³½ýßÞmæ%³ ÙB „q–·è©çi'JtÊ‹5¬ëä‰}E¥¶oÀrJÅ¢âÍ…û "¹ð`ˆš«D–p¤_äiÒÁEßæüˆÑeUµÙ¢ºa¦íâ(ò¨ñ’W}[œ²å\nËyÝwR_RK“ÊYÔ¡ØóÜ5cõ|LÂApáXFá ÒÀ_Fô {o¸ï`/Tu©ºlH¢EiÂQÛï[öÜ3Þ¼=ƒ\ذXÍàKÞ…Ýñ,¾íGð×¢žË1*°åGôVEíÛíEhˆðÔ0qÊ»L±8æí8DHF§=J--´c:oF}ÙëÔÅŠ%oXB²‡Å¨Æ¿rÚ®žZÈ%é&ý•%- c@NU@¾ª«œwâÏ£KU]W¢4pVµI…KD¡qï©(¶=Lhä)¶¡ºEÁª×ôŠìÖÓì@ •ܧin PâìîPK¡¶4KôY¥Ð.•À¡¸´‚¹?Ë$•ØLÅãÀOäãÀ×ZϦjq"wàÍP%´O¬(0ú.¹‡ž=¢ñ”žzT
v!TÞªFFëxa²L~ªŽód¨@t©V,kGžˆ"®o˜Hæ'TÜ`¬–)’.AISõ Ìžwy¡´¥e%Ú©Š¹x,£#a¿0´ãBIÂ(œÄ5„¤ê –}¤e;¦Ž8»8‰Œ#:ÑÑÇÌjëâ`LXÕV6÷Cמ62¯º¹Ò¤siäêwЛ N€õãçIUéôÁTL•‰ð©%âBÑœ3锼ÞíÖzº´²ýåžêgÎZ<mQ\º\WeSuìÕ€Ð>D1ñ•#È&TbÑ<Ù6ôF HÉÖóC±ÁBW[1ÏMÇÖ"ßà¥d›ø‘OÇX¡ê˜¢Ë.kXr :ë¦:6I ™v³!e-$úVz ˜|{æiÖT\ôóIV:‚©uaò<ÃJé™¶ì.€%º!ÑFj”(˳çãp¤29Cá%&