Reworked protocol initialization. Work in progress (more cleanup is needed)

This commit is contained in:
Luca 2015-07-08 11:58:55 -07:00
parent dc1d7bf47f
commit 5266c726f2
137 changed files with 2477 additions and 1461 deletions

View file

@ -321,5 +321,19 @@ void ndpi_search_rtp(struct ndpi_detection_module_struct *ndpi_struct, struct nd
}
#endif
#endif /* NDPI_PROTOCOL_RTP */
void init_rtp_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask)
{
ndpi_set_bitmask_protocol_detection("RTP", ndpi_struct, detection_bitmask, *id,
NDPI_PROTOCOL_RTP,
ndpi_search_rtp,
NDPI_SELECTION_BITMASK_PROTOCOL_UDP_WITH_PAYLOAD,
SAVE_DETECTION_BITMASK_AS_UNKNOWN,
ADD_TO_DETECTION_BITMASK);
*id += 1;
}
#endif
/* NDPI_PROTOCOL_RTP */