curl_easy_cleanup.3

来自「功能最强大的网络爬虫,希望大家好好学习啊,好好研究啊」· 3 代码 · 共 29 行

3
29
字号
.\" You can view this file with:.\" nroff -man [file].\" $Id: curl_easy_cleanup.3,v 1.5 2004/02/27 15:34:06 bagder Exp $.\".TH curl_easy_cleanup 3 "13 Nov 2002" "libcurl 7.7" "libcurl Manual".SH NAMEcurl_easy_cleanup - End a libcurl easy session.SH SYNOPSIS.B #include <curl/curl.h>.BI "void curl_easy_cleanup(CURL *" handle ");".SH DESCRIPTIONThis function must be the last function to call for an easy session. It is theopposite of the \fIcurl_easy_init(3)\fP function and must be called with thesame \fIhandle\fP as input that the curl_easy_init call returned.This will effectively close all connections this handle has used and possiblyhas kept open until now. Don't call this function if you intend to transfermore files.When you've called this, you can safely remove all the strings you'vepreviously told libcurl to use, as it won't use them anymore now..SH RETURN VALUENone.SH "SEE ALSO".BR curl_easy_init "(3), "

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?