From: Jouni Malinen Date: Sun, 17 Nov 2013 19:44:53 +0000 (+0200) Subject: wlantest: Add support for debug log timestamps X-Git-Tag: hostap_2_1~534 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de8bb171f64b3115792c1706e18fb4a24903c037;p=thirdparty%2Fhostap.git wlantest: Add support for debug log timestamps The new command line argument -t can now be used to request wlantest to include a timestamp in the log entries. Signed-hostap: Jouni Malinen --- diff --git a/wlantest/wlantest.c b/wlantest/wlantest.c index 57c8be025..3589d689b 100644 --- a/wlantest/wlantest.c +++ b/wlantest/wlantest.c @@ -15,6 +15,7 @@ extern int wpa_debug_level; extern int wpa_debug_show_keys; +extern int wpa_debug_timestamp; static void wlantest_terminate(int sig, void *signal_ctx) @@ -25,7 +26,7 @@ static void wlantest_terminate(int sig, void *signal_ctx) static void usage(void) { - printf("wlantest [-cddhqqF] [-i] [-r] " + printf("wlantest [-cddhqqFt] [-i] [-r] " "[-p]\n" " [-I] [-R] " "[-P]\n" @@ -290,7 +291,7 @@ int main(int argc, char *argv[]) wlantest_init(&wt); for (;;) { - c = getopt(argc, argv, "cdf:Fhi:I:L:n:p:P:qr:R:w:W:"); + c = getopt(argc, argv, "cdf:Fhi:I:L:n:p:P:qr:R:tw:W:"); if (c < 0) break; switch (c) { @@ -338,6 +339,9 @@ int main(int argc, char *argv[]) case 'R': read_wired_file = optarg; break; + case 't': + wpa_debug_timestamp = 1; + break; case 'w': wt.write_file = optarg; break;