curl_easy_reset.3 781 B

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