aboutsummaryrefslogtreecommitdiff
path: root/src/include/ndpi_api.h
Commit message (Collapse)AuthorAge
* serializer char* parameters are now constAlfredo Cardigliano2019-07-19
|
* Improvements for dta dissectionLuca Deri2019-07-18
|
* Deserialization boundary check fix, new end_of_record typeAlfredo Cardigliano2019-07-17
|
* Added ndpi_serialization_uint32_uint64 and ndpi_serialization_string_uint64Alfredo Cardigliano2019-07-17
|
* Added ndpi_serialization_string_uint32Alfredo Cardigliano2019-07-16
|
* Merge pull request #736 from themadprofessor/patch-1Luca Deri2019-07-13
|\ | | | | Fix invalid function prototype
| * Fix invalid function prototypeStuart Reilly2019-07-12
| | | | | | Solves a warning when compiling with strict-prototypes.
* | initial work towards simple serilizer/deserialierLuca Deri2019-07-13
|/
* Various TLS improvementsLuca Deri2019-07-02
|
* Merge remote-tracking branch 'upstream' into devStuart Reilly2019-07-01
|\
| * Added ndpi_has_human_readeable_string for detecting human-readeable strings ↵Luca Deri2019-06-30
| | | | | | | | in buffers
* | Remove duplicate defintions and fix function prototypesStuart Reilly2019-06-28
|/
* Dissection improvementsLuca Deri2019-06-27
|
* Reworked SSL cipher handlingLuca Deri2019-06-16
|
* Added ndpi_is_safe_ssl_cipher(0 callLuca Deri2019-05-23
|
* Make path const in ndpi_load_protocols_fileDerrick Lyndon Pallas2019-04-05
|
* Implemented ndpi_process_partial_detection() API call to handle partial ↵Luca Deri2019-04-01
| | | | matches due to the nDPI specified configuration
* Change ndpi_fill_ip_protocol_category to pass IPs explicitlyemanuele-f2019-02-12
|
* Removed this party LRU and replaced with home grownLuca Deri2019-01-17
|
* Expose ndpi_fill_ip_protocol_category api to handle ICMP flows categoryemanuele-f2018-12-12
|
* Improved skype, teredo, netbios heuristicsLuca Deri2018-11-21
| | | | Changed ndpi_detection_giveup() API: guess is now part of the call
* Improved WeChat supportLuca Deri2018-11-19
| | | | | Removed Musical.ly protocol as the service has been merged with another one and thus it is no longer used Improved guess for UDP protocols
* Added ndpi_flowv4_flow_hash and ndpi_flowv6_flow_hash skeletons forLuca Deri2018-11-14
| | | | implementing https://github.com/corelight/community-id-spec
* Add function to search host in custom categoriesemanuele-f2018-10-10
|
* Added ndpi_protocol2id() API callLuca2018-09-17
|
* Completed custom category implementationLuca Deri2018-08-16
|
* Major code cleanupLuca2018-07-21
| | | | Converted some not popular protocols to NDPI_PROTOCOL_GENERIC with category detection
* Hidden ndpi_detection_module_struct definitionLuca Deri2018-05-14
|
* Added ndpi_set_detection_preferences() APi callLuca Deri2018-05-14
|
* Added ndpi_fill_protocol_category callLuca Deri2018-05-11
| | | | Introduced intitial Skype in/out support
* Improved hyperscan support and category definitionLuca Deri2018-05-10
|
* Implemented custom category loading.Luca2018-04-26
| | | | Modified ndpiReader with -c <file> (use mining_hosts.txt as example) for loading name-based categories
* Added API callsLuca Deri2018-03-23
| | | | | | | ndpi_network_ptree_match ndpi_check_flow_func ndpi_config.h is now installed with "make install"
* Added ndpi_get_api_version() API call to be used in applications thatLuca2018-03-21
| | | | are dynamically linking with nDPI, to make sure the APIs are in sync
* Added simplified makefileLuca Deri2017-12-25
| | | | | Fixed small warnings Compilation fixes
* Implements ndpi_get_category_idSimone Mainardi2017-12-11
|
* Refactoring the debugging output.Vitaly Lavrov2017-10-26
| | | | | | | | | | | | | | levels of debug output: 0 - ERROR: Only for errors. 1 - TRACE: Start of each packets and if found protocol. 2 - DEBUG: Start of searching each protocol and excluding protocols. 3 - DEBUG_EXTRA: For all other messages. Added field ndpi_struct->debug_logging for enable debug output of each protocols. Simple macros for debugging output are added: NDPI_LOG_ERR(), NDPI_LOG_INFO(), NDPI_LOG_DBG(), NDPI_LOG_DBG2(), NDPI_EXCLUDE_PROTO()
* Added ndpi_is_subprotocol_informative() API callLuca Deri2017-10-06
|
* Patch for giving prority in case of match to custom-defined protocolsLuca Deri2017-09-24
|
* Added ndpi_category_set_name() API callLuca Deri2017-09-19
|
* Reorganized protocol familiesLuca Deri2017-09-15
| | | | Added new API calls ndpi_set_proto_breed() and ndpi_set_proto_category() for overwriting nDPI protocol specifications
* Added custom 5 protocol categories to be used by applications. They are ↵Luca Deri2017-09-15
| | | | | | currently empty Added ndpi_is_custom_category() to check if a defined category is custom
* Partial fix for #410: added case insensitive HTTP header checks.Luca2017-08-29
| | | | If the user will provide a pcap for reproducing further potential issues reported we will consider them
* Implementation for extra packet processing if desiredMicah Lyle2017-07-17
|
* Added new API callsLuca Deri2017-05-01
| | | | | - ndpi_add_string_value_to_automa - ndpi_match_string_id
* Added ndpi_flow_ free/malloc and set_ functions:Vito Piserchia2017-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.
* deleted useless function - change macro nameCampus2017-03-15
|
* change behaviour for https://github.com/ntop/nDPI/issues/344 - fix skype ↵Campus2017-03-15
| | | | detection deleting parts that detect host name and ip addr (duplicate behaviour) - improved any detection after fix - added skype host name
* Merge pull request #279 from emanuele-f/categoryLuca Deri2016-10-23
|\ | | | | Add protocol category ids
| * Add protocol category idsemanuele-f2016-10-22
| |