diff options
author | Michele Campus <fci1908@gmail.com> | 2015-07-12 18:03:44 +0200 |
---|---|---|
committer | Michele Campus <fci1908@gmail.com> | 2015-07-12 18:03:44 +0200 |
commit | 05f2eb62701913dc991c906c4930e55ed9d1f09a (patch) | |
tree | edd48a1ebfdccf64a39e3c65fe295df7a2e7919a | |
parent | 0307c85bd3c17bdb2fc96160dc86cea3472a1f6b (diff) |
fixed Oscar protocol dissector (2)
-rw-r--r-- | src/lib/protocols/oscar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/protocols/oscar.c b/src/lib/protocols/oscar.c index 4bf0ec8fc..8789d81d9 100644 --- a/src/lib/protocols/oscar.c +++ b/src/lib/protocols/oscar.c @@ -565,8 +565,7 @@ static void ndpi_search_oscar_tcp_connect(struct ndpi_detection_module_struct if (flag == htons(0x0000)|| flag == htons(0x8000) || flag == htons(0x0001)) { /* request ID */ - if((req_ID >= 0 && req_ID <= 2147483647) || - (req_ID >= 2147483648 && req_ID <= 4294967295)) + if((req_ID <= 4294967295)) { NDPI_LOG(NDPI_PROTOCOL_OSCAR, ndpi_struct, NDPI_LOG_DEBUG, "OSCAR Detected \n"); ndpi_int_oscar_add_connection(ndpi_struct, flow); |