mirror of
https://github.com/curl/curl.git
synced 2026-08-02 17:10:29 +03:00
curl tool: reviewed code moved to tool_*.[ch] files
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues.
This commit is contained in:
parent
84221006c9
commit
9ecf53e154
12 changed files with 601 additions and 308 deletions
|
|
@ -91,7 +91,7 @@ struct Configurable {
|
|||
bool netrc_opt;
|
||||
bool netrc;
|
||||
char *netrc_file;
|
||||
bool noprogress;
|
||||
bool noprogress; /* don't show progress meter, --silent given */
|
||||
bool isatty; /* updated internally only if output is a tty */
|
||||
struct getout *url_list; /* point to the first node */
|
||||
struct getout *url_last; /* point to the last/current node */
|
||||
|
|
@ -119,7 +119,7 @@ struct Configurable {
|
|||
trace tracetype;
|
||||
bool tracetime; /* include timestamp? */
|
||||
long httpversion;
|
||||
int progressmode;
|
||||
int progressmode; /* CURL_PROGRESS_BAR or CURL_PROGRESS_STATS */
|
||||
bool nobuffer;
|
||||
bool readbusy; /* set when reading input returns EAGAIN */
|
||||
bool globoff;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue