explicitly mention easy handle
[platform/upstream/curl.git] / docs / libcurl / curl_easy_cleanup.3
1 .\" You can view this file with:
2 .\" nroff -man [file]
3 .\" $Id$
4 .\"
5 .TH curl_easy_cleanup 3 "4 March 2002" "libcurl 7.7" "libcurl Manual"
6 .SH NAME
7 curl_easy_cleanup - End a libcurl easy session
8 .SH SYNOPSIS
9 .B #include <curl/curl.h>
10 .sp
11 .BI "void curl_easy_cleanup(CURL *" handle ");"
12 .ad
13 .SH DESCRIPTION
14 This function must be the last function to call for an easy session. It is the
15 opposite of the \fIcurl_easy_init\fP function and must be called with the same
16 \fIhandle\fP as input that the curl_easy_init call returned.
17
18 This will effectively close all connections this handle has used and possibly
19 has kept open until now. Don't call this function if you intend to transfer
20 more files.
21 .SH RETURN VALUE
22 None
23 .SH "SEE ALSO"
24 .BR curl_easy_init "(3), "
25