From: Michael Gernoth Date: Thu, 30 May 2013 22:31:51 +0000 (+0200) Subject: add timestamp X-Git-Tag: v0.100~93 X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/hmcfgusb/commitdiff_plain/e2776af8fe91dec685980fd5ef75736be9d6402d add timestamp --- diff --git a/hmsniff.c b/hmsniff.c index 7cc20c1..9ce1fce 100644 --- a/hmsniff.c +++ b/hmsniff.c @@ -29,10 +29,7 @@ #include #include #include -#include -#include -#include -#include +#include #include #include "hexdump.h" @@ -95,8 +92,17 @@ char *hm_message_types(uint8_t type) static void dissect_hm(uint8_t *buf, int len) { + struct timeval tv; + struct tm *tmp; + char ts[32]; int i; + gettimeofday(&tv, NULL); + tmp = localtime(&tv.tv_sec); + memset(ts, 0, sizeof(ts)); + strftime(ts, sizeof(ts)-1, "%Y-%m-%d %H:%M:%S", tmp); + printf("%s.%06ld: ", ts, tv.tv_usec); + for (i = 0; i < len; i++) { printf("%02X", buf[i]); }