diff options
author | Simone Mainardi <simonemainardi@gmail.com> | 2016-07-08 15:10:33 +0200 |
---|---|---|
committer | Simone Mainardi <simonemainardi@gmail.com> | 2016-07-08 15:23:45 +0200 |
commit | 72e3930e088c9e6df51f7f314935167c63b8d0ad (patch) | |
tree | c94af77134d6de80ad01a0fcc5f988ace24c4392 /example/ndpi_util.c | |
parent | 6fb81f146e2542cfbf7fab7d53678339c7747b35 (diff) | |
parent | 31140c8da74aaceb76709c11082e4cb2e07e11e9 (diff) |
Fixes nDPI protocol initialization for Git
[NDPI] ndpi_init_protocol_defaults(missing protoId=226) INTERNAL ERROR: not all protocols have been initialized
This is actually a merge of branch 'dev' into 1.8-stable.
Diffstat (limited to 'example/ndpi_util.c')
-rw-r--r-- | example/ndpi_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ndpi_util.c b/example/ndpi_util.c index 939b3efd0..57a6505e9 100644 --- a/example/ndpi_util.c +++ b/example/ndpi_util.c @@ -736,7 +736,7 @@ void ndpi_workflow_process_packet (struct ndpi_workflow * workflow, goto iph_check; } - if((frag_off & 0x3FFF) != 0) { + if((frag_off & 0x1FFF) != 0) { static u_int8_t ipv4_frags_warning_used = 0; workflow->stats.fragmented_count++; |