aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example/reader_util.c2
-rw-r--r--src/lib/ndpi_classify.c2
-rw-r--r--src/lib/ndpi_main.c25
-rw-r--r--src/lib/third_party/src/ht_hash.c4
-rwxr-xr-xtests/do.sh2
5 files changed, 18 insertions, 17 deletions
diff --git a/example/reader_util.c b/example/reader_util.c
index a5a40905d..4859d69e5 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -694,7 +694,7 @@ static struct ndpi_flow_info *get_ndpi_flow_info(struct ndpi_workflow * workflow
workflow->stats.packet_len[4]++;
else if(l4_packet_len >= 1500)
workflow->stats.packet_len[5]++;
-
+
if(l4_packet_len > workflow->stats.max_packet_len)
workflow->stats.max_packet_len = l4_packet_len;
diff --git a/src/lib/ndpi_classify.c b/src/lib/ndpi_classify.c
index 5d68500dd..ad2aee32a 100644
--- a/src/lib/ndpi_classify.c
+++ b/src/lib/ndpi_classify.c
@@ -516,9 +516,7 @@ ndpi_classify (const unsigned short *pkt_len, const struct timeval *pkt_time,
features[i+8+MC_BINS_LEN*MC_BINS_LEN+MC_BINS_TIME*MC_BINS_TIME] = bd[i]/((float)(ob));
}
}
- }
- if (ob+ib > 100 && use_bd) {
score = ndpi_parameters_bd[0];
for (i = 1; i < NUM_PARAMETERS_BD_LOGREG; i++) {
score += features[i]*ndpi_parameters_bd[i];
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index 5930ede5c..fa2192472 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -363,12 +363,12 @@ static void addDefaultPort(struct ndpi_detection_module_struct *ndpi_str,
u_int8_t customUserProto,
ndpi_default_ports_tree_node_t **root,
const char *_func, int _line) {
- ndpi_default_ports_tree_node_t *ret;
u_int16_t port;
for(port=range->port_low; port<=range->port_high; port++) {
ndpi_default_ports_tree_node_t *node = (ndpi_default_ports_tree_node_t*)ndpi_malloc(sizeof(ndpi_default_ports_tree_node_t));
-
+ ndpi_default_ports_tree_node_t *ret;
+
if(!node) {
NDPI_LOG_ERR(ndpi_str, "%s:%d not enough memory\n", _func, _line);
break;
@@ -400,10 +400,11 @@ static int removeDefaultPort(ndpi_port_range *range,
ndpi_default_ports_tree_node_t **root)
{
ndpi_default_ports_tree_node_t node;
- ndpi_default_ports_tree_node_t *ret;
u_int16_t port;
for(port=range->port_low; port<=range->port_high; port++) {
+ ndpi_default_ports_tree_node_t *ret;
+
node.proto = def, node.default_port = port;
ret = (ndpi_default_ports_tree_node_t*)ndpi_tdelete(&node, (void*)root,
ndpi_default_ports_tree_node_t_cmp); /* Add it to the tree */
@@ -2442,13 +2443,13 @@ int ndpi_get_protocol_id_master_proto(struct ndpi_detection_module_struct *ndpi_
static ndpi_default_ports_tree_node_t* ndpi_get_guessed_protocol_id(struct ndpi_detection_module_struct *ndpi_str,
u_int8_t proto, u_int16_t sport, u_int16_t dport) {
- const void *ret;
ndpi_default_ports_tree_node_t node;
if(sport && dport) {
int low = ndpi_min(sport, dport);
int high = ndpi_max(sport, dport);
-
+ const void *ret;
+
node.default_port = low; /* Check server port first */
ret = ndpi_tfind(&node,
(proto == IPPROTO_TCP) ? (void*)&ndpi_str->tcpRoot : (void*)&ndpi_str->udpRoot,
@@ -4314,7 +4315,7 @@ int ndpi_enable_loaded_categories(struct ndpi_detection_module_struct *ndpi_str)
#ifdef HAVE_HYPERSCAN
if(ndpi_str->custom_categories.num_to_load > 0) {
const char **expressions;
- unsigned int *ids, i;
+ unsigned int *ids;
int rc;
struct hs_list *head = ndpi_str->custom_categories.to_load;
@@ -5874,10 +5875,10 @@ int ndpi_get_protocol_id(struct ndpi_detection_module_struct *ndpi_str, char *pr
int ndpi_get_category_id(struct ndpi_detection_module_struct *ndpi_str, char *cat) {
int i;
- const char *name;
for(i = 0; i < NDPI_PROTOCOL_NUM_CATEGORIES; i++) {
- name = ndpi_category_get_name(ndpi_str, i);
+ const char *name = ndpi_category_get_name(ndpi_str, i);
+
if(strcasecmp(cat, name) == 0)
return(i);
}
@@ -5905,12 +5906,14 @@ void ndpi_dump_protocols(struct ndpi_detection_module_struct *ndpi_str) {
* first slen characters of s.
*/
char* ndpi_strnstr(const char *s, const char *find, size_t slen) {
- char c, sc;
+ char c;
size_t len;
if((c = *find++) != '\0') {
len = strnlen(find, slen);
do {
+ char sc;
+
do {
if(slen-- < 1 || (sc = *s++) == '\0')
return(NULL);
@@ -5930,12 +5933,14 @@ char* ndpi_strnstr(const char *s, const char *find, size_t slen) {
* Same as ndpi_strnstr but case-insensitive
*/
char* ndpi_strncasestr(const char *s, const char *find, size_t slen) {
- char c, sc;
+ char c;
size_t len;
if((c = *find++) != '\0') {
len = strlen(find);
do {
+ char sc;
+
do {
if(slen-- < 1 || (sc = *s++) == '\0')
return(NULL);
diff --git a/src/lib/third_party/src/ht_hash.c b/src/lib/third_party/src/ht_hash.c
index 838fc2c6d..9a3afabac 100644
--- a/src/lib/third_party/src/ht_hash.c
+++ b/src/lib/third_party/src/ht_hash.c
@@ -126,10 +126,6 @@ u_int16_t ht_get(hashtable_t *hashtable, char *key) {
int bin = 0;
entry_t *pair;
-#ifdef HASH_DEBUG
- printf("*** %s() %s = %u ***\n", __FUNCTION__, key, pair->value);
-#endif
-
bin = ht_hash(hashtable, key);
/* Step through the bin, looking for our value. */
diff --git a/tests/do.sh b/tests/do.sh
index 805437846..40b93e063 100755
--- a/tests/do.sh
+++ b/tests/do.sh
@@ -1,3 +1,5 @@
+#!/bin/sh
+
READER="../example/ndpiReader -p ../example/protos.txt -c ../example/categories.txt"
RC=0