]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
wlantest: Add support for debug log timestamps
authorJouni Malinen <j@w1.fi>
Sun, 17 Nov 2013 19:44:53 +0000 (21:44 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 17 Nov 2013 19:45:32 +0000 (21:45 +0200)
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 <j@w1.fi>

wlantest/wlantest.c

index 57c8be025c155fd3fd884b285c035f614949874f..3589d689bbae35464f66f27c22767722b1dcf93f 100644 (file)
@@ -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<ifname>] [-r<pcap file>] "
+       printf("wlantest [-cddhqqFt] [-i<ifname>] [-r<pcap file>] "
               "[-p<passphrase>]\n"
               "         [-I<wired ifname>] [-R<wired pcap file>] "
               "[-P<RADIUS shared secret>]\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;