aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-06-12 15:09:57 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-06-12 17:04:10 +0200
commit8925c91194d213cef585db3e000419d6bfaed64a (patch)
tree84c26b9f352ca221aa4c0d5b06775d38e3b5ee2b
parent63a2b359b9bbc481ef266407791f09fd12be8fc4 (diff)
Fix missing u_char, u_short and u_int typedefs for some platforms e.g.:fix/missing-typedefs-and-strncasecmp-replacement
In file included from ../include/ndpi_main.h:34, from ../include/ndpi_api.h:28, from protocols/activision.c:26: ../include/ndpi_typedefs.h:294:3: error: unknown type name 'u_char' 294 | u_char h_dest[6]; /* destination eth addr */ | ^~~~~~ Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r--src/include/ndpi_typedefs.h14
-rw-r--r--src/lib/ndpi_main.c3
2 files changed, 16 insertions, 1 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h
index 87c2cb2ef..b04b8b644 100644
--- a/src/include/ndpi_typedefs.h
+++ b/src/include/ndpi_typedefs.h
@@ -31,6 +31,20 @@
/* Used by both nDPI core and patricia code under third-party */
#include "ndpi_patricia_typedefs.h"
+#ifndef NDPI_CFFI_PREPROCESSING
+#ifndef u_char
+typedef unsigned char u_char;
+#endif
+
+#ifndef u_short
+typedef unsigned short u_short;
+#endif
+
+#ifndef u_int
+typedef unsigned int u_int;
+#endif
+#endif
+
/* NDPI_LOG_LEVEL */
typedef enum {
NDPI_LOG_ERROR,
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index da863652c..9253d0f2a 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -8489,7 +8489,8 @@ char *ndpi_strnstr(const char *s, const char *find, size_t slen) {
/* ****************************************************** */
/*
- * Same as ndpi_strnstr but case-insensitive
+ * Same as ndpi_strnstr but case-insensitive.
+ * Please note that this function is *NOT* equivalent to strncasecmp().
*/
const char * ndpi_strncasestr(const char *str1, const char *str2, size_t len) {
size_t str1_len = strnlen(str1, len);