aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2020-08-26 12:25:28 +0200
committerLuca Deri <deri@ntop.org>2020-08-26 12:25:28 +0200
commit487d91526258284df675f88593708a9261005b6e (patch)
treee2a7b60848add0b8940d9936943ff83fbdb81156 /src/include
parent5e1bb0dbc12f779151d386c63d7b7992b5940006 (diff)
Added ndpi_http_method2str() API call
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ndpi_api.h.in2
-rw-r--r--src/include/ndpi_typedefs.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/include/ndpi_api.h.in b/src/include/ndpi_api.h.in
index de3f90885..aac75f02c 100644
--- a/src/include/ndpi_api.h.in
+++ b/src/include/ndpi_api.h.in
@@ -928,7 +928,7 @@ extern "C" {
ndpi_serializer *serializer);
void ndpi_md5(const u_char *data, size_t data_len, u_char hash[16]);
-
+
/* ptree (trie) API */
ndpi_ptree_t* ndpi_ptree_create(void);
int ndpi_ptree_insert(ndpi_ptree_t *tree, const ndpi_ip_addr_t *addr, u_int8_t bits, u_int32_t user_data);
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h
index 90cc13149..359ff6d84 100644
--- a/src/include/ndpi_typedefs.h
+++ b/src/include/ndpi_typedefs.h
@@ -477,6 +477,10 @@ PACK_ON struct tinc_cache_entry {
u_int16_t dst_port;
} PACK_OFF;
+/*
+ In case the typedef below is modified, please update
+ ndpi_http_method2str (ndpi_utils.c)
+*/
typedef enum {
NDPI_HTTP_METHOD_UNKNOWN = 0,
NDPI_HTTP_METHOD_OPTIONS,