2011-03-11 18:14:32 -05:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2014-10-21 04:26:40 -04:00
|
|
|
.\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-11 18:14:32 -05:00
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
.\" * are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-11 18:14:32 -05:00
|
|
|
.\" *
|
|
|
|
.\" * 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.
|
|
|
|
.\" *
|
|
|
|
.\" **************************************************************************
|
2002-03-04 08:06:46 -05:00
|
|
|
.TH curl_easy_init 3 "4 March 2002" "libcurl 7.8.1" "libcurl Manual"
|
2002-03-04 05:09:48 -05:00
|
|
|
.SH NAME
|
2002-03-04 08:06:46 -05:00
|
|
|
curl_easy_init - Start a libcurl easy session
|
2002-03-04 05:09:48 -05:00
|
|
|
.SH SYNOPSIS
|
|
|
|
.B #include <curl/curl.h>
|
2003-11-05 10:52:00 -05:00
|
|
|
|
2002-03-04 05:09:48 -05:00
|
|
|
.BI "CURL *curl_easy_init( );"
|
|
|
|
.SH DESCRIPTION
|
2002-03-04 08:06:46 -05:00
|
|
|
This function must be the first function to call, and it returns a CURL easy
|
2014-10-21 04:26:40 -04:00
|
|
|
handle that you must use as input to other functions in the easy
|
|
|
|
interface. This call \fBMUST\fP have a corresponding call to
|
2004-02-27 10:34:06 -05:00
|
|
|
\fIcurl_easy_cleanup(3)\fP when the operation is complete.
|
2002-03-04 05:09:48 -05:00
|
|
|
|
2014-10-21 04:26:40 -04:00
|
|
|
If you did not already call \fIcurl_global_init(3)\fP, \fIcurl_easy_init(3)\fP
|
|
|
|
does it automatically. This may be lethal in multi-threaded cases, since
|
|
|
|
\fIcurl_global_init(3)\fP is not thread-safe, and it may result in resource
|
|
|
|
problems because there is no corresponding cleanup.
|
2006-01-15 18:55:53 -05:00
|
|
|
|
2014-10-21 04:26:40 -04:00
|
|
|
You are strongly advised to not allow this automatic behaviour, by calling
|
|
|
|
\fIcurl_global_init(3)\fP yourself properly. See the description in
|
|
|
|
\fBlibcurl\fP(3) of global environment requirements for details of how to use
|
|
|
|
this function.
|
2002-03-04 05:09:48 -05:00
|
|
|
.SH RETURN VALUE
|
|
|
|
If this function returns NULL, something went wrong and you cannot use the
|
|
|
|
other curl functions.
|
2014-11-25 08:25:02 -05:00
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
|
|
|
CURL *curl = curl_easy_init();
|
|
|
|
if(curl) {
|
|
|
|
CURLcode res;
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
}
|
|
|
|
.fi
|
2002-03-04 05:09:48 -05:00
|
|
|
.SH "SEE ALSO"
|
2014-11-25 08:25:02 -05:00
|
|
|
.BR curl_easy_cleanup "(3), " curl_global_init "(3), " curl_easy_reset "(3), "
|
|
|
|
.BR curl_easy_perform "(3) "
|