diff options
author | Martin Willi <martin@strongswan.org> | 2006-10-18 11:47:26 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-10-18 11:47:26 +0000 |
commit | 0ae1deb887226769f76f246e3cf9bef27d1c5ff6 (patch) | |
tree | 1122536448e35215e5fcdd1301ce50d5a75f1156 /src/stroke/stroke.h | |
parent | 107936f55a0b49d84db0072c91aa87cb19476852 (diff) | |
download | strongswan-0ae1deb887226769f76f246e3cf9bef27d1c5ff6.tar.bz2 strongswan-0ae1deb887226769f76f246e3cf9bef27d1c5ff6.tar.xz |
updated stroke to allow run-time manipulation of debug levels
Diffstat (limited to 'src/stroke/stroke.h')
-rw-r--r-- | src/stroke/stroke.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/stroke/stroke.h b/src/stroke/stroke.h index 3383f27ac..048ee0813 100644 --- a/src/stroke/stroke.h +++ b/src/stroke/stroke.h @@ -115,8 +115,6 @@ struct stroke_msg_t { /* show verbose connection status */ STR_STATUS_ALL, /* set a log type to log/not log */ - STR_LOGTYPE, - /* set the verbosity of a logging context */ STR_LOGLEVEL, /* list various objects */ STR_LIST, @@ -154,23 +152,16 @@ struct stroke_msg_t { stroke_end_t me, other; } add_conn; - /* data for STR_LOGTYPE */ - struct { - char *context; - char *type; - int enable; - } logtype; - /* data for STR_LOGLEVEL */ struct { - char *context; + char *type; int level; } loglevel; /* data for STR_LIST */ struct { list_flag_t flags; - bool utc; + bool utc; } list; /* data for STR_REREAD */ |