Install curl-7.21.1.tar.bz2
[msysgit.git] / mingw / share / man / man3 / curl_easy_reset.3
blob4652f7e608c4dfe87da6940be7b6ad0c328b53a4
1 .\"
2 .TH curl_easy_reset 3 "31 July 2004" "libcurl 7.12.1" "libcurl Manual"
3 .SH NAME
4 curl_easy_reset - reset all options of a libcurl session handle
5 .SH SYNOPSIS
6 .B #include <curl/curl.h>
8 .BI "void curl_easy_reset(CURL *"handle ");"
10 .SH DESCRIPTION
11 Re-initializes all options previously set on a specified CURL handle to the
12 default values. This puts back the handle to the same state as it was in when
13 it was just created with \fIcurl_easy_init(3)\fP.
15 It does not change the following information kept in the handle: live
16 connections, the Session ID cache, the DNS cache, the cookies and shares.
17 .SH AVAILABILITY
18 This function was added in libcurl 7.12.1
19 .SH RETURN VALUE
20 Nothing
21 .SH "SEE ALSO"
22 .BR curl_easy_init "(3)," curl_easy_cleanup "(3)," curl_easy_setopt "(3)