diff options
Diffstat (limited to 'example')
-rw-r--r-- | example/ndpiReader.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index e34c973ab..0bbcd1e55 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -2819,46 +2819,6 @@ static void node_idle_scan_walker(const void *node, ndpi_VISIT which, int depth, /* *********************************************** */ -#if 0 -/** - * @brief Print debug - */ -static void debug_printf(u_int32_t protocol, void *id_struct, - ndpi_log_level_t log_level, - const char *format, ...) { - va_list va_ap; - struct tm result; - - if(log_level <= nDPI_LogLevel) { - char buf[8192], out_buf[8192]; - char theDate[32]; - const char *extra_msg = ""; - time_t theTime = time(NULL); - - va_start (va_ap, format); - - if(log_level == NDPI_LOG_ERROR) - extra_msg = "ERROR: "; - else if(log_level == NDPI_LOG_TRACE) - extra_msg = "TRACE: "; - else - extra_msg = "DEBUG: "; - - memset(buf, 0, sizeof(buf)); - strftime(theDate, 32, "%d/%b/%Y %H:%M:%S", localtime_r(&theTime,&result)); - ndpi_snprintf(buf, sizeof(buf)-1, format, va_ap); - - ndpi_snprintf(out_buf, sizeof(out_buf), "%s %s%s", theDate, extra_msg, buf); - printf("%s", out_buf); - fflush(stdout); - } - - va_end(va_ap); -} -#endif - -/* *********************************************** */ - static int is_realtime_protocol(ndpi_protocol proto) { static u_int16_t const realtime_protos[] = { |