1curl_formfree(3) libcurl Manual curl_formfree(3)
2
3
4
6 curl_formfree - free a previously build multipart/formdata HTTP POST
7 chain
8
10 #include <curl/curl.h>
11
12 void curl_formfree(struct curl_httppost *form);
13
15 This function is deprecated. Do not use! See curl_mime_init(3) instead!
16
17 curl_formfree() is used to clean up data previously built/appended with
18 curl_formadd(3). This must be called when the data has been used, which
19 typically means after curl_easy_perform(3) has been called.
20
21 The pointer to free is the same pointer you passed to the CURLOPT_HTTP‐
22 POST(3) option, which is the firstitem pointer from the curl_formadd(3)
23 invoke(s).
24
25 form is the pointer as returned from a previous call to curl_formadd(3)
26 and may be NULL.
27
28 Passing in a NULL pointer in form will make this function return imme‐
29 diately with no action.
30
32 Deprecated in 7.56.0.
33
35 None
36
38 curl_formadd(3), curl_mime_init(3), curl_mime_free(3)
39
40
41
42libcurl 7.69.1 August 09, 2018 curl_formfree(3)