aboutsummaryrefslogtreecommitdiff
path: root/src/include/ndpi_define.h.in
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2022-07-28 19:59:15 +0200
committerlns <matzeton@googlemail.com>2022-07-29 18:24:42 +0200
commit8358107a9b5760b6dc9cea84c658a5d2be02c2ff (patch)
tree9dcd51e78edaa9eb1d41149242ba37fe2eb9811d /src/include/ndpi_define.h.in
parent405a52ed65c0b641b26f0571bf6a6c369c5251d7 (diff)
Add Softether dissector.add/softether-dissector
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/include/ndpi_define.h.in')
-rw-r--r--src/include/ndpi_define.h.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/ndpi_define.h.in b/src/include/ndpi_define.h.in
index e591f3eda..5c552c0d7 100644
--- a/src/include/ndpi_define.h.in
+++ b/src/include/ndpi_define.h.in
@@ -390,9 +390,9 @@ static inline u_int64_t get_u_int64_t(const u_int8_t* X, int O)
#define htole32(x) (x)
#define be32toh(x) ntohl(x)
#define le32toh(x) (x)
-#define htobe64(x) htonll(x)
+#define htobe64(x) ndpi_htonll(x)
#define htole64(x) (x)
-#define be64toh(x) ntohll(x)
+#define be64toh(x) ndpi_ntohll(x)
#define le64toh(x) (x)
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__