Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | fix compiler error about json | MaYuming | 2017-06-25 | |
| | ||||
* | Added -x flag. Produces a bpf filter based on diagnose information generated ↵ | berat | 2017-06-23 | |
| | | | | by -b flag | |||
* | Label fix | Luca | 2017-06-17 | |
| | ||||
* | Added scanner host stats to (-b) diagnose statistics | berat | 2017-06-16 | |
| | ||||
* | Fixed bug causing wrong results in (-b) diagnose statistics | berat | 2017-06-16 | |
| | ||||
* | Use flag %d to print signed integers in ndpiReader. | Pavlos Antoniou | 2017-06-07 | |
| | ||||
* | Remove unused variables for ndpiReader.c and tinc.c | Pavlos Antoniou | 2017-06-07 | |
| | ||||
* | Cleanup | Luca Deri | 2017-06-03 | |
| | ||||
* | TYpo | Luca | 2017-05-29 | |
| | ||||
* | Compilation fix for systems that do not have JSON-C installed | Luca Deri | 2017-05-26 | |
| | ||||
* | Added timestamp, flow count and app. level protocol to (-b) diagnose statistics | berat | 2017-05-26 | |
| | ||||
* | Added check for searching JSON-C in home directory if not installed | Luca Deri | 2017-05-24 | |
| | | | | Fixed type | |||
* | Fixed bug that was forcing the reader to pass several times the same flow | Luca | 2017-05-24 | |
| | | | | renamed some variables | |||
* | Split src2dst / dst2src traffic | Luca Deri | 2017-05-24 | |
| | ||||
* | compilation fixes | Alfredo Cardigliano | 2017-05-23 | |
| | ||||
* | crc32 fix | Alfredo Cardigliano | 2017-05-23 | |
| | ||||
* | forcing quiet mode in extcap mode | cardigliano | 2017-05-22 | |
| | ||||
* | Fixed JSON format when -v 3 and -b is used | Luca Deri | 2017-05-22 | |
| | ||||
* | Removed warning | Luca Deri | 2017-05-22 | |
| | ||||
* | Added -b for saving port based diagnose statistics in json | berat | 2017-05-19 | |
| | ||||
* | Remove unused variable and clarify operator precedence in ndpi_util.c | Pavlos Antoniou | 2017-05-18 | |
| | ||||
* | Restored file selection as the wireshark bug seems to be fixed in 2.3.x ↵ | Luca Deri | 2017-05-17 | |
| | | | | wireshark series | |||
* | Reworked flow structure handler | Luca Deri | 2017-05-17 | |
| | ||||
* | Fix out-of-bounds heap read caused by using header->len instead of ↵ | alexei-argus | 2017-05-10 | |
| | | | | header->caplen (as provided in pcap_loop) | |||
* | Added IPv6 support to Port Stats | berat | 2017-05-09 | |
| | ||||
* | Added missing direction update with non TCP-UDP protocols | Luca | 2017-05-08 | |
| | ||||
* | Minor code cleanup | Luca Deri | 2017-05-01 | |
| | ||||
* | fixed syntax for gcc compiler | berat | 2017-05-01 | |
| | ||||
* | Added IP Statistics to Port Stats | berat | 2017-05-01 | |
| | ||||
* | Added -m for splitting analysis in sub-analysis steps | Luca Deri | 2017-04-30 | |
| | ||||
* | Improved SSL dissection | Luca | 2017-04-27 | |
| | ||||
* | Improced extcap configuration window with sorted protocol list | Luca Deri | 2017-04-25 | |
| | | | | Reported flow stats in Statistics -> nDPI menu | |||
* | Extcap crash fix | Luca Deri | 2017-04-25 | |
| | ||||
* | Updated Wireshark lua dissector | Luca Deri | 2017-04-24 | |
| | | | | | Added -v to ndpiReader to print port stats Recomputed protocol test results | |||
* | Initial Wireshark nDPI integration | Luca Deri | 2017-04-23 | |
| | ||||
* | fix for https://github.com/ntop/nDPI/issues/364 | Campus | 2017-04-20 | |
| | ||||
* | Added port stats when verbose mode (-v) is used | Luca Deri | 2017-04-19 | |
| | ||||
* | ndpiReader now prints (-v) the flows with the correct direction | Luca Deri | 2017-04-19 | |
| | ||||
* | Fixed thread crash caused by commit 29cd6ef9942188633b79b5c1fe62360f048a6450 | Luca | 2017-04-19 | |
| | ||||
* | Compilation fix for old compilers | Luca | 2017-04-18 | |
| | ||||
* | Added ethernet checksum reforging and nDPI protocol export in nDPI-extcap reader | Luca | 2017-04-17 | |
| | ||||
* | name correction for llc_snap header and minor fix | Campus | 2017-04-15 | |
| | ||||
* | fix segmentation fault caused by missing spanning tree check - add control ↵ | Campus | 2017-04-15 | |
| | | | | for threads return values | |||
* | Initial wireshark integration via extcap interface | Luca Deri | 2017-04-14 | |
| | ||||
* | Added Ookla (SpeedTest) protocol detection | Luca Deri | 2017-04-01 | |
| | ||||
* | Merge branch 'set_memory_functions' of https://github.com/vpiserchia/nDPI ↵ | Campus | 2017-03-29 | |
|\ | | | | | | | into vpiserchia-set_memory_functions | |||
| * | Added ndpi_flow_ free/malloc and set_ functions: | Vito Piserchia | 2017-03-16 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ideally these two new functions will provide more flexibility in regards of application that want to use specific allocation approaches, for example storage queues for this structures from where the application can pop and release the data it needs. Semantically they can be set up as the other ndpi_malloc and ndpi_free functions, that is via the set_ndpi_flow_malloc and set_ndpi_flow_free. In case a NULL parameter is passed to the above functions the old approach will be used, that means that the ndpi_malloc will be used as the ndpi_flow_malloc function and ndpi_free_flow as the ndpi_flow_free one. Application that use the old functions will be not affected by this change, and the ndpi_free_flow can be deprecated in the future and made private. | |||
* | | SSL server certificate is now detected | Luca Deri | 2017-03-21 | |
|/ | ||||
* | change behaviour for https://github.com/ntop/nDPI/issues/344 - fix skype ↵ | Campus | 2017-03-15 | |
| | | | | detection deleting parts that detect host name and ip addr (duplicate behaviour) - improved any detection after fix - added skype host name | |||
* | spelling: platform | Josh Soref | 2017-03-12 | |
| |