diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-06-06 16:02:54 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-06-06 16:02:54 +0000 |
commit | dd730b09db35b2365dd23e5ad5ed6a31b36e1227 (patch) | |
tree | 9b44eb9f46883c0336b0b57a0a275d58964a000a /docs | |
parent | c045301128d0f3144e5db1ff4c2580a0180f4e5e (diff) |
modified
Diffstat (limited to 'docs')
-rw-r--r-- | docs/curl_easy_setopt.3 | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/curl_easy_setopt.3 b/docs/curl_easy_setopt.3 index a043721e4..9b1d46223 100644 --- a/docs/curl_easy_setopt.3 +++ b/docs/curl_easy_setopt.3 @@ -225,9 +225,13 @@ to create the list and to clean up an entire list. .TP .B CURLOPT_HTTPPOST -Pass a pointer to a linked list of HTTP post data to pass to the server in -your http request. The linked list should be a fully valid list of 'struct -HttpPost' structs properly filled in. TBD! +Tells libcurl you want a multipart/formdata HTTP POST to be made and you +instruct what data to pass on to the server. Pass a pointer to a linked list +of HTTP post structs as parameter. The linked list should be a fully valid +list of 'struct HttpPost' structs properly filled in. The best and most +elegant way to do this, is to use +.I curl_formparse(3) +as documented. .TP .B CURLOPT_SSLCERT Pass a pointer to a zero terminated string as parameter. The string should be |