1curl_easy_reset(3) libcurl Manual curl_easy_reset(3)
2
3
4
6 curl_easy_reset - reset all options of a libcurl session handle
7
9 #include <curl/curl.h>
10
11 void curl_easy_reset(CURL *handle);
12
13
15 Re-initializes all options previously set on a specified CURL handle to
16 the default values. This puts back the handle to the same state as it
17 was in when it was just created with curl_easy_init(3).
18
19 It does not change the following information kept in the handle: live
20 connections, the Session ID cache, the DNS cache, the cookies and
21 shares.
22
24 This function was added in libcurl 7.12.1
25
27 Nothing
28
30 curl_easy_init(3),curl_easy_cleanup(3),curl_easy_setopt(3),
31 curl_easy_duphandle(3)
32
33
34
35
36libcurl 7.61.1 February 03, 2016 curl_easy_reset(3)