diff options
author | Kamil Dudka <kdudka@redhat.com> | 2010-05-16 02:49:08 +0200 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2010-05-16 02:52:33 +0200 |
commit | 2ffe834bffa893efcd8942736ab14e311a0087b3 (patch) | |
tree | f05892e9d30c465ebf990bd1a8e01fc517e156fa /docs/libcurl | |
parent | 027ceb37a1075bb585c8f5917a26f37cdfa352d6 (diff) |
ftp wildcard: a new option CURLOPT_FNMATCH_DATA
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 9 | ||||
-rw-r--r-- | docs/libcurl/symbols-in-versions | 1 |
2 files changed, 7 insertions, 3 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 7fa4f7271..a26898f1e 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -507,13 +507,16 @@ Pass a pointer that will be untouched by libcurl and passed as the ptr argument to the \fICURL_CHUNK_BGN_FUNTION\fP and \fICURL_CHUNK_END_FUNTION\fP. (This was added in 7.21.0) .IP CURLOPT_FNMATCH_FUNCTION -Function pointer that should match \fBint function(const char *pattern, const -char *string)\fP prototype (see \fIcurl/curl.h\fP). It is used internally for -the wildcard matching feature. +Function pointer that should match \fBint function(void *ptr, const char +*pattern, const char *string)\fP prototype (see \fIcurl/curl.h\fP). It is used +internally for the wildcard matching feature. Return \fICURL_FNMATCHFUNC_MATCH\fP if pattern matches the string, \fICURL_FNMATCHFUNC_NOMATCH\fP if not or \fICURL_FNMATCHFUNC_FAIL\fP if an error occurred. (This was added in 7.21.0) +.IP CURLOPT_FNMATCH_DATA +Pass a pointer that will be untouched by libcurl and passed as the ptr argument +to the \fICURL_FNMATCH_FUNCTION\fP. (This was added in 7.21.0) .SH ERROR OPTIONS .IP CURLOPT_ERRORBUFFER Pass a char * to a buffer that the libcurl may store human readable error diff --git a/docs/libcurl/symbols-in-versions b/docs/libcurl/symbols-in-versions index a9bebe229..b33619ee0 100644 --- a/docs/libcurl/symbols-in-versions +++ b/docs/libcurl/symbols-in-versions @@ -220,6 +220,7 @@ CURLOPT_FAILONERROR 7.1 CURLOPT_FILE 7.1 7.9.7 CURLOPT_FILETIME 7.5 CURLOPT_FLAGS 7.1 - 7.9.2 +CURLOPT_FNMATCH_DATA 7.21.0 CURLOPT_FNMATCH_FUNCTION 7.21.0 CURLOPT_FOLLOWLOCATION 7.1 CURLOPT_FORBID_REUSE 7.7 |