summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-05-03 13:43:13 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-05-03 13:43:13 +0200
commit2a34cf9de1888aa728874e7adab6e973a0fec604 (patch)
tree8848dc50933968add3f5f8d33aea63d8dc0b54b7
parentbdb2dbc1032e7ca33cfc161fd1d5bfbabdf65841 (diff)
downloadcurl-bagder/chunk-callback-no-time.tar.gz
CURLOPT_CHUNK_BGN_FUNCTION.3: document the struct and time valuebagder/chunk-callback-no-time
The time field in the curl_fileinfo struct will always be zero. No code was ever implemented to actually convert the date string to a time_t. Fixes #3829
-rw-r--r--docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.329
-rw-r--r--include/curl/curl.h2
2 files changed, 29 insertions, 2 deletions
diff --git a/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3
index 8a7afb620..8ddd35ea7 100644
--- a/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3
+++ b/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3
@@ -5,7 +5,7 @@
.\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____|
.\" *
-.\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
+.\" * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
@@ -27,6 +27,33 @@ CURLOPT_CHUNK_BGN_FUNCTION \- callback before a transfer with FTP wildcardmatch
.nf
#include <curl/curl.h>
+struct curl_fileinfo {
+ char *filename;
+ curlfiletype filetype;
+ time_t time; /* always zero! */
+ unsigned int perm;
+ int uid;
+ int gid;
+ curl_off_t size;
+ long int hardlinks;
+
+ struct {
+ /* If some of these fields is not NULL, it is a pointer to b_data. */
+ char *time;
+ char *perm;
+ char *user;
+ char *group;
+ char *target; /* pointer to the target filename of a symlink */
+ } strings;
+
+ unsigned int flags;
+
+ /* used internally */
+ char *b_data;
+ size_t b_size;
+ size_t b_used;
+};
+
long chunk_bgn_callback(const void *transfer_info, void *ptr,
int remains);
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 75f780cd7..d83b21798 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -290,7 +290,7 @@ typedef enum {
struct curl_fileinfo {
char *filename;
curlfiletype filetype;
- time_t time;
+ time_t time; /* always zero! */
unsigned int perm;
int uid;
int gid;