diff options
Diffstat (limited to 'src/lib/protocols/soap.c')
-rw-r--r-- | src/lib/protocols/soap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/protocols/soap.c b/src/lib/protocols/soap.c index 82e2ab428..9b51a84d4 100644 --- a/src/lib/protocols/soap.c +++ b/src/lib/protocols/soap.c @@ -79,11 +79,10 @@ void ndpi_search_soap(struct ndpi_detection_module_struct *ndpi_struct, } } -void init_soap_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, - NDPI_PROTOCOL_BITMASK *detection_bitmask) +void init_soap_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id) { ndpi_set_bitmask_protocol_detection( - "SOAP", ndpi_struct, detection_bitmask, *id, + "SOAP", ndpi_struct, *id, NDPI_PROTOCOL_SOAP, ndpi_search_soap, NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_WITH_PAYLOAD_WITHOUT_RETRANSMISSION, SAVE_DETECTION_BITMASK_AS_UNKNOWN, ADD_TO_DETECTION_BITMASK); *id += 1; |