diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2025-05-22 22:08:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-22 22:08:24 +0200 |
commit | cd03cca6792a057d0fac63576305109ed88af7d5 (patch) | |
tree | a3afcf71b67e769829bc2580819c7e07776da96b /src/lib/protocols/ipp.c | |
parent | 112d2397cef3a0864e1f380e6d42bfd1cfb9a62e (diff) |
IPP: fix selection bitmask (#2845)
IPP is identified *only* as HTTP subprotocol, so it can't be over UDP
(HTTP is only over TCP...)
Diffstat (limited to 'src/lib/protocols/ipp.c')
-rw-r--r-- | src/lib/protocols/ipp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/ipp.c b/src/lib/protocols/ipp.c index 21c7804e4..8c81c6fc7 100644 --- a/src/lib/protocols/ipp.c +++ b/src/lib/protocols/ipp.c @@ -61,7 +61,7 @@ void init_ipp_dissector(struct ndpi_detection_module_struct *ndpi_struct) ndpi_set_bitmask_protocol_detection("IPP", ndpi_struct, NDPI_PROTOCOL_IPP, ndpi_search_ipp, - NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_OR_UDP_WITH_PAYLOAD_WITHOUT_RETRANSMISSION, + NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_WITH_PAYLOAD_WITHOUT_RETRANSMISSION, SAVE_DETECTION_BITMASK_AS_UNKNOWN, ADD_TO_DETECTION_BITMASK); } |