diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2019-06-22 15:42:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-22 15:42:15 +0200 |
commit | 6ed8ccfa4643705e6d1915fe2569aa29d9b0f2d8 (patch) | |
tree | 93e2ef0b1c34786872477a6ce7ca51e7fee9c2d1 /src | |
parent | c4f513f6e7c93edc6171e69852935098dc571bb8 (diff) | |
parent | 1e616b227b99edbb807dff1dd3bf97d61a48f293 (diff) |
Merge pull request #723 from lance-wyvern/dev
OICQ protocol version:0x371b
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/protocols/qq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/protocols/qq.c b/src/lib/protocols/qq.c index 077d385fa..8c6805572 100644 --- a/src/lib/protocols/qq.c +++ b/src/lib/protocols/qq.c @@ -243,10 +243,10 @@ u_int8_t ndpi_is_valid_qq_ft_packet(const struct ndpi_packet_struct *packet) static void ndpi_search_qq_udp(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow) { struct ndpi_packet_struct *packet = &flow->packet; - - static const u_int16_t p8000_patt_02[13] = // maybe version numbers - { 0x1549, 0x1801, 0x180d, 0x0961, 0x01501, 0x0e35, 0x113f, 0x0b37, 0x1131, 0x163a, 0x1e0d, 0x3619,}; - u_int16_t no_of_patterns = 12, index = 0; + + static const u_int16_t p8000_patt_02[15] = // maybe version numbers + { 0x1549, 0x1801, 0x180d, 0x0961, 0x01501, 0x0e35, 0x113f, 0x0b37, 0x1131, 0x163a, 0x1e0d, 0x3619, 0x371b, 0x3823,}; + u_int16_t no_of_patterns = 14, index = 0; NDPI_LOG_DBG(ndpi_struct, "search qq udp\n"); |