aboutsummaryrefslogtreecommitdiff
path: root/src/tool_cfgable.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-02-27 20:51:49 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-02-27 21:01:08 +0000
commit4efa1d29e274079ed75f4e93115008816e2dda9f (patch)
tree318e33b9db34811ebd3d21832bd635edf39f726d /src/tool_cfgable.h
parentfd97c17bb76aa3031026d6714e2f2409e9a1c3aa (diff)
tool: Moved --trace and --verbose to the global config
Diffstat (limited to 'src/tool_cfgable.h')
-rw-r--r--src/tool_cfgable.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tool_cfgable.h b/src/tool_cfgable.h
index 381cd2c8a..5d85d3c88 100644
--- a/src/tool_cfgable.h
+++ b/src/tool_cfgable.h
@@ -121,11 +121,6 @@ struct OperationConfig {
bool crlf;
char *customrequest;
char *krblevel;
- char *trace_dump; /* file to dump the network trace to, or NULL */
- FILE *trace_stream;
- bool trace_fopened;
- trace tracetype;
- bool tracetime; /* include timestamp? */
long httpversion;
int progressmode; /* CURL_PROGRESS_BAR or CURL_PROGRESS_STATS */
bool nobuffer;
@@ -225,6 +220,11 @@ struct GlobalConfig {
0 => -s is used to NOT show errors
1 => -S has been used to show errors */
bool mute; /* don't show messages, --silent given */
+ char *trace_dump; /* file to dump the network trace to */
+ FILE *trace_stream;
+ bool trace_fopened;
+ trace tracetype;
+ bool tracetime; /* include timestamp? */
struct OperationConfig *first;
struct OperationConfig *current;