aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2023-10-29 20:21:24 +0100
committerGitHub <noreply@github.com>2023-10-29 20:21:24 +0100
commit2c2eaf8e79d99afffe9467e253dc4ea2ac41fe36 (patch)
tree4775dcdd41bf57b941e1d7fbd170c23155495fe5 /src
parent03fd155ae38b0b3b57f18a25e80abb68b169e326 (diff)
Rename some functions with more useful/clear names (#2127)
Diffstat (limited to 'src')
2 files changed, 8 insertions, 8 deletions
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h
index ee77b537a..d7bb344ab 100644
--- a/src/include/ndpi_api.h
+++ b/src/include/ndpi_api.h
@@ -766,8 +766,8 @@ extern "C" {
*/
int ndpi_load_protocols_file(struct ndpi_detection_module_struct *ndpi_mod,
const char* path);
- int ndpi_load_protocols_file2(struct ndpi_detection_module_struct *ndpi_mod,
- FILE *fd);
+ int ndpi_load_protocols_file_fd(struct ndpi_detection_module_struct *ndpi_mod,
+ FILE *fd);
/**
* Add an IP-address based risk mask
@@ -810,7 +810,7 @@ extern "C" {
* -1 else
*/
int ndpi_load_categories_file(struct ndpi_detection_module_struct *ndpi_str, const char* path, void *user_data);
- int ndpi_load_categories_file2(struct ndpi_detection_module_struct *ndpi_str, FILE *fd, void *user_data);
+ int ndpi_load_categories_file_fd(struct ndpi_detection_module_struct *ndpi_str, FILE *fd, void *user_data);
/**
* Loads a file (separated by <cr>) of domain names associated with the specified category
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index a0fb3a1a6..4a42a5112 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -4415,15 +4415,15 @@ int ndpi_load_categories_file(struct ndpi_detection_module_struct *ndpi_str,
return -1;
}
- rc = ndpi_load_categories_file2(ndpi_str, fd, user_data);
+ rc = ndpi_load_categories_file_fd(ndpi_str, fd, user_data);
fclose(fd);
return rc;
}
-int ndpi_load_categories_file2(struct ndpi_detection_module_struct *ndpi_str,
- FILE *fd, void *user_data) {
+int ndpi_load_categories_file_fd(struct ndpi_detection_module_struct *ndpi_str,
+ FILE *fd, void *user_data) {
char buffer[512], *line, *name, *category, *saveptr;
int len, num = 0;
@@ -4801,14 +4801,14 @@ int ndpi_load_protocols_file(struct ndpi_detection_module_struct *ndpi_str, cons
return -1;
}
- rc = ndpi_load_protocols_file2(ndpi_str, fd);
+ rc = ndpi_load_protocols_file_fd(ndpi_str, fd);
fclose(fd);
return rc;
}
-int ndpi_load_protocols_file2(struct ndpi_detection_module_struct *ndpi_str, FILE *fd) {
+int ndpi_load_protocols_file_fd(struct ndpi_detection_module_struct *ndpi_str, FILE *fd) {
char *buffer, *old_buffer;
int chunk_len = 1024, buffer_len = chunk_len, old_buffer_len;
int i;