diff options
author | Andrea Buscarinu <seven.and@gmail.com> | 2015-05-15 02:53:11 +0200 |
---|---|---|
committer | Andrea Buscarinu <seven.and@gmail.com> | 2015-05-15 02:53:11 +0200 |
commit | a18a877669f2bb5cea337b195d86a40e0fbddbae (patch) | |
tree | db027655d7d86c8c8e20b981db3bf5820ab6fca5 /src | |
parent | efedc5e49803187c30d854bab17186aa006df094 (diff) |
Update ndpi_main.c
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ndpi_main.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index b175ffe1b..bae0a7a72 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -1456,6 +1456,11 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp no_master, "Telegram", ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */); + ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_QUIC, + no_master, + no_master, "Quic", + ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, + ndpi_build_default_ports(ports_b, 443, 0, 0, 0, 0) /* UDP */); custom_master[0] = NDPI_PROTOCOL_HTTP, custom_master[1] = NDPI_PROTOCOL_UNKNOWN; custom_master1[0] = NDPI_PROTOCOL_DNS, custom_master1[1] = NDPI_PROTOCOL_UNKNOWN; @@ -3516,6 +3521,15 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n ADD_TO_DETECTION_BITMASK); #endif +#ifdef NDPI_PROTOCOL_QUIC + ndpi_set_bitmask_protocol_detection("QUIC", ndpi_struct, detection_bitmask, a++, + NDPI_PROTOCOL_QUIC, + ndpi_search_quic, + NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_UDP_WITH_PAYLOAD, + SAVE_DETECTION_BITMASK_AS_UNKNOWN, + ADD_TO_DETECTION_BITMASK); +#endif + ndpi_struct->callback_buffer_size = a; NDPI_LOG(NDPI_PROTOCOL_UNKNOWN, ndpi_struct, NDPI_LOG_DEBUG, |