diff options
author | Luca Deri <deri@ntop.org> | 2019-01-16 22:30:55 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-01-16 22:30:55 +0100 |
commit | c856e0a56384ae9d145282d0eb6f8b97f54913fb (patch) | |
tree | 7cad4389addd68f265f1b41914c033b7faeec3b5 | |
parent | 2ade0be365429a404d63f8ee20f1b59650cde710 (diff) |
Disabled ookla statistics: needs to be improved
-rw-r--r-- | src/lib/protocols/ookla.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/protocols/ookla.c b/src/lib/protocols/ookla.c index b1eb295a7..4d46dbf58 100644 --- a/src/lib/protocols/ookla.c +++ b/src/lib/protocols/ookla.c @@ -26,6 +26,7 @@ void ndpi_search_ookla(struct ndpi_detection_module_struct* ndpi_struct, struct ndpi_flow_struct* flow) { +#if 0 struct ndpi_packet_struct* packet = &flow->packet; u_int32_t addr = 0; void *value; @@ -49,6 +50,7 @@ void ndpi_search_ookla(struct ndpi_detection_module_struct* ndpi_struct, struct } ookla_exclude: +#endif NDPI_EXCLUDE_PROTO(ndpi_struct, flow); } |