diff options
author | Luca Deri <deri@ntop.org> | 2024-05-07 13:09:00 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2024-05-07 13:09:00 +0200 |
commit | 3d2b611ea678da93fbefb5c9d40b1d062b8e490e (patch) | |
tree | 7bd7da246d5f9d1fe30d138e58685be976b99a3a /src | |
parent | 0d495294bfdd5b4ba13a78de2c76f3682b20c888 (diff) |
ndpi_mod is now optional (albeit better to spcify it) in ndpi_domain_classify_xxx calls
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ndpi_domain_classify.c | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/src/lib/ndpi_domain_classify.c b/src/lib/ndpi_domain_classify.c index 068bb9faf..c23ffed8b 100644 --- a/src/lib/ndpi_domain_classify.c +++ b/src/lib/ndpi_domain_classify.c @@ -90,9 +90,12 @@ bool ndpi_domain_classify_add(struct ndpi_detection_module_struct *ndpi_str, // fprintf(stdout, "."); fflush(stdout); #ifdef ENCODE_DATA - out_len = ndpi_encode_domain(ndpi_str, domain, out, sizeof(out)); - - ndpi_hash_add_entry(&s->domains, out, out_len, class_id); + if(ndpi_str) { + out_len = ndpi_encode_domain(ndpi_str, domain, out, sizeof(out)); + + ndpi_hash_add_entry(&s->domains, out, out_len, class_id); + } else + ndpi_hash_add_entry(&s->domains, domain, strlen(domain), class_id); #else ndpi_hash_add_entry(&s->domains, domain, strlen(domain), class_id); #endif @@ -167,11 +170,16 @@ bool ndpi_domain_classify_hostname(struct ndpi_detection_module_struct *ndpi_mod /* This looks like a match so let's check the hash now */ #ifdef ENCODE_DATA - char out[256]; - u_int32_t out_len = ndpi_encode_domain(ndpi_mod, item, out, sizeof(out)); - - if(ndpi_hash_find_entry(s->domains, out, out_len, class_id) == 0) - return(true); + if(ndpi_mod) { + char out[256]; + u_int32_t out_len = ndpi_encode_domain(ndpi_mod, item, out, sizeof(out)); + + if(ndpi_hash_find_entry(s->domains, out, out_len, class_id) == 0) + return(true); + } else { + if(ndpi_hash_find_entry(s->domains, item, strlen(item), class_id) == 0) + return(true); + } #else if(ndpi_hash_find_entry(s->domains, item, strlen(item), class_id) == 0) return(true); |