aboutsummaryrefslogtreecommitdiff
path: root/docs/curl_easy_setopt.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-06-02 12:06:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-06-02 12:06:47 +0000
commitebf0fe0df970dc43e9ec9cfebe72514f6ea3ccf7 (patch)
tree24d0244fc99a4994acb9c78121f94828b093bb8e /docs/curl_easy_setopt.3
parentba17b97e0a790dfc1c8e969fd767b8bda879c76e (diff)
updated
Diffstat (limited to 'docs/curl_easy_setopt.3')
-rw-r--r--docs/curl_easy_setopt.39
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/curl_easy_setopt.3 b/docs/curl_easy_setopt.3
index 37569dce7..a043721e4 100644
--- a/docs/curl_easy_setopt.3
+++ b/docs/curl_easy_setopt.3
@@ -244,12 +244,17 @@ TBD.
.B CURLOPT_QUOTE
Pass a pointer to a linked list of FTP commands to pass to the server prior to
your ftp request. The linked list should be a fully valid list of 'struct
-curl_slist' structs properly filled in. TBD!
+curl_slist' structs properly filled in. Use
+.I curl_slist_append(3)
+to append strings (commands) to the list, and clear the entire list afterwards
+with
+.I curl_slist_free_all(3)
.TP
.B CURLOPT_POSTQUOTE
Pass a pointer to a linked list of FTP commands to pass to the server after
your ftp transfer request. The linked list should be a fully valid list of
-'struct curl_slist' structs properly filled in. TBD!
+struct curl_slist structs properly filled in as described for
+.I "CURLOPT_QUOTE"
.TP
.B CURLOPT_WRITEHEADER
Pass a FILE * to be used to write the header part of the received data to.