diff options
author | Toni <matzeton@googlemail.com> | 2022-05-29 13:12:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 13:12:13 +0200 |
commit | 33f9729ee4881f92afad662008a3d378aee2887d (patch) | |
tree | e4bffc3eacdc19c23d60c9538e2806d8e8940399 /src/lib/protocols/http.c | |
parent | cfd23e88198716d8d5b3625a7da586536701349f (diff) |
Added MPEG-DASH dissector. Fixes #1223. (#1555)
* Improved HTTP POST detection
* Refactored subprotocol detection
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/protocols/http.c')
-rw-r--r-- | src/lib/protocols/http.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c index 6351e50aa..cdb2d97bf 100644 --- a/src/lib/protocols/http.c +++ b/src/lib/protocols/http.c @@ -1047,6 +1047,7 @@ static void ndpi_check_http_tcp(struct ndpi_detection_module_struct *ndpi_struct ndpi_parse_packet_line_info(ndpi_struct, flow); check_content_type_and_change_protocol(ndpi_struct, flow); ndpi_validate_http_content(ndpi_struct, flow); + ndpi_int_http_add_connection(ndpi_struct, flow, NDPI_PROTOCOL_HTTP, NDPI_PROTOCOL_CATEGORY_WEB); return; } |