2007-08-22 19:28:26 +08:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2021-10-25 14:54:08 +08:00
|
|
|
.\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2007-08-22 19:28:26 +08:00
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
.\" * are also available at https://curl.se/docs/copyright.html.
|
2007-08-22 19:28:26 +08: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.
|
|
|
|
.\" *
|
|
|
|
.\" * SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
.\" *
|
2007-08-22 19:28:26 +08:00
|
|
|
.\" **************************************************************************
|
2002-03-04 18:09:48 +08:00
|
|
|
.\"
|
2018-04-18 03:17:57 +08:00
|
|
|
.TH curl_easy_cleanup 3 "22 Aug 2007" "libcurl 7.17.0" "libcurl Manual"
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH NAME
|
2014-10-21 16:26:40 +08:00
|
|
|
curl_easy_cleanup - End a libcurl easy handle
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH SYNOPSIS
|
2021-11-26 21:20:18 +08:00
|
|
|
.nf
|
|
|
|
#include <curl/curl.h>
|
2003-11-05 23:52:00 +08:00
|
|
|
|
2021-11-26 21:20:18 +08:00
|
|
|
void curl_easy_cleanup(CURL *handle);
|
|
|
|
.fi
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH DESCRIPTION
|
2002-03-04 21:10:15 +08:00
|
|
|
This function must be the last function to call for an easy session. It is the
|
2004-02-27 23:34:06 +08:00
|
|
|
opposite of the \fIcurl_easy_init(3)\fP function and must be called with the
|
2014-10-21 16:26:40 +08:00
|
|
|
same \fIhandle\fP as input that a \fIcurl_easy_init(3)\fP call returned.
|
2002-03-04 18:09:48 +08:00
|
|
|
|
2014-10-21 16:26:40 +08:00
|
|
|
This might close all connections this handle has used and possibly has kept
|
|
|
|
open until now - unless it was attached to a multi handle while doing the
|
2021-10-31 23:34:44 +08:00
|
|
|
transfers. Do not call this function if you intend to transfer more files,
|
2014-10-21 16:26:40 +08:00
|
|
|
re-using handles is a key to good performance with libcurl.
|
2002-11-14 17:54:10 +08:00
|
|
|
|
2011-08-11 20:54:44 +08:00
|
|
|
Occasionally you may get your progress callback or header callback called from
|
|
|
|
within \fIcurl_easy_cleanup(3)\fP (if previously set for the handle using
|
|
|
|
\fIcurl_easy_setopt(3)\fP). Like if libcurl decides to shut down the
|
|
|
|
connection and the protocol is of a kind that requires a command/response
|
|
|
|
sequence before disconnect. Examples of such protocols are FTP, POP3 and IMAP.
|
|
|
|
|
2014-10-21 16:26:40 +08:00
|
|
|
Any use of the \fBhandle\fP after this function has been called and have
|
|
|
|
returned, is illegal. \fIcurl_easy_cleanup(3)\fP kills the handle and all
|
|
|
|
memory associated with it!
|
2007-08-22 19:28:26 +08:00
|
|
|
|
2021-11-10 15:41:51 +08:00
|
|
|
To close an easy handle that has been used with the multi interface, make sure
|
|
|
|
to call \fIcurl_multi_remove_handle(3)\fP first to remove it from the multi
|
|
|
|
handle before it is closed.
|
|
|
|
|
2018-08-09 22:37:39 +08:00
|
|
|
Passing in a NULL pointer in \fIhandle\fP will make this function return
|
|
|
|
immediately with no action.
|
2014-11-25 21:25:02 +08:00
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
|
|
|
CURL *curl = curl_easy_init();
|
|
|
|
if(curl) {
|
|
|
|
CURLcode res;
|
2020-09-17 05:04:07 +08:00
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
|
2014-11-25 21:25:02 +08:00
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
}
|
|
|
|
.fi
|
2021-10-25 14:54:08 +08:00
|
|
|
.SH AVAILABILITY
|
2021-10-25 17:45:09 +08:00
|
|
|
Added in 7.1
|
2021-10-25 14:54:08 +08:00
|
|
|
.SH RETURN VALUE
|
|
|
|
None
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH "SEE ALSO"
|
2015-06-11 14:32:11 +08:00
|
|
|
.BR curl_easy_init "(3), " curl_easy_duphandle "(3), "
|
|
|
|
.BR curl_easy_reset "(3), "
|
|
|
|
.BR curl_multi_cleanup "(3), " curl_multi_remove_handle "(3) "
|