aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2020-12-17 12:58:12 +0100
committerLuca Deri <deri@ntop.org>2020-12-17 12:58:12 +0100
commitdf1b3367a9dffa937cd2cc0de460d4394079ec6e (patch)
tree1758f13c66fbdff11620e68752128ea0190912ae /src/lib/protocols
parent2768da06377ab64fccbb1bf97460e892e0548a60 (diff)
Type change to avoid Windows compilation issues
Diffstat (limited to 'src/lib/protocols')
-rw-r--r--src/lib/protocols/http.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c
index 266b441ac..cc81644aa 100644
--- a/src/lib/protocols/http.c
+++ b/src/lib/protocols/http.c
@@ -441,7 +441,8 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_
ndpi_check_http_url(ndpi_struct, flow, &flow->http.url[packet->host_line.len]);
}
- flow->http.method = ndpi_http_str2method((const char*)flow->packet.http_method.ptr, flow->packet.http_method.len);
+ flow->http.method = ndpi_http_str2method((const char*)flow->packet.http_method.ptr,
+ (u_int16_t)flow->packet.http_method.len);
}
if(packet->server_line.ptr != NULL && (packet->server_line.len > 7)) {