diff options
author | emanuele-f <black.silver@hotmail.it> | 2019-10-08 11:55:10 +0200 |
---|---|---|
committer | emanuele-f <black.silver@hotmail.it> | 2019-10-08 11:55:47 +0200 |
commit | f2504494fed30da9b941e791af0cb67823000b2d (patch) | |
tree | ad530661da39331a3fad071fd0ed006d6b425ad9 /src/include/ndpi_api.h | |
parent | 256858d2e5d9db3777ccb113ed75bcd836fc8d16 (diff) |
New API functions: ndpi_load_categories_file and ndpi_load_category
Diffstat (limited to 'src/include/ndpi_api.h')
-rw-r--r-- | src/include/ndpi_api.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h index e5c52610e..ccca9cc25 100644 --- a/src/include/ndpi_api.h +++ b/src/include/ndpi_api.h @@ -613,6 +613,16 @@ extern "C" { int ndpi_load_protocols_file(struct ndpi_detection_module_struct *ndpi_mod, const char* path); + /** + * Read a file and load the categories + * + * @par ndpi_mod = the detection module + * @par path = the path of the file + * @return 0 if the file is loaded correctly; + * -1 else + */ + int ndpi_load_categories_file(struct ndpi_detection_module_struct *ndpi_str, const char* path); + /** * Get the total number of the supported protocols * @@ -744,10 +754,12 @@ extern "C" { */ int ndpi_match_string(void *_automa, char *string_to_match); - void ndpi_load_ip_category(struct ndpi_detection_module_struct *ndpi_struct, + int ndpi_load_ip_category(struct ndpi_detection_module_struct *ndpi_struct, const char *ip_address_and_mask, ndpi_protocol_category_t category); int ndpi_load_hostname_category(struct ndpi_detection_module_struct *ndpi_struct, const char *name_to_add, ndpi_protocol_category_t category); + int ndpi_load_category(struct ndpi_detection_module_struct *ndpi_struct, + const char *ip_or_name, ndpi_protocol_category_t category); int ndpi_enable_loaded_categories(struct ndpi_detection_module_struct *ndpi_struct); int ndpi_fill_ip_protocol_category(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t saddr, |