diff options
author | Nardi Ivan <nardi.ivan@gmail.com> | 2020-04-15 18:07:24 +0200 |
---|---|---|
committer | Nardi Ivan <nardi.ivan@gmail.com> | 2020-04-20 16:53:39 +0200 |
commit | b1a6c6b8957b62ec8ada423abfdcfa5471c00147 (patch) | |
tree | 0d03df67b8fa0647050a74f473985301a027fa79 /example/ndpiReader.c | |
parent | e60354996737df132ef4a2a681839e1bf403c296 (diff) |
Fix some compilation warnings
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index d64918b85..f15ee0e66 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -218,6 +218,7 @@ FILE *trace = NULL; */ static void setupDetection(u_int16_t thread_id, pcap_t * pcap_handle); +#if 0 static void reduceBDbits(uint32_t *bd, unsigned int len) { int mask = 0; int shift = 0; @@ -238,6 +239,7 @@ static void reduceBDbits(uint32_t *bd, unsigned int len) { for(i = 0; i < len; i++) bd[i] = bd[i] >> shift; } +#endif /** * @brief Get flow byte distribution mean and variance @@ -1530,12 +1532,14 @@ static int acceptable(u_int32_t num_pkts){ /* *********************************************** */ +#if 0 static int receivers_sort(void *_a, void *_b) { struct receiver *a = (struct receiver *)_a; struct receiver *b = (struct receiver *)_b; return(b->num_pkts - a->num_pkts); } +#endif /* *********************************************** */ |