mirror of
https://github.com/curl/curl.git
synced 2026-08-05 07:16:14 +03:00
ftplistparser: move out private data from public struct
The public 'curl_fileinfo' struct contained three fields that are for internal purposes only. This change makes them unused in the public struct. The new private struct fields are also renamed to make this separation more obvious internally. Closes #10844
This commit is contained in:
parent
e4cd1ffed1
commit
01114f6efd
4 changed files with 53 additions and 49 deletions
|
|
@ -331,7 +331,8 @@ struct curl_fileinfo {
|
|||
|
||||
unsigned int flags;
|
||||
|
||||
/* used internally */
|
||||
/* These are libcurl private struct fields. Previously used by libcurl, so
|
||||
they must never be interfered with. */
|
||||
char *b_data;
|
||||
size_t b_size;
|
||||
size_t b_used;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue