diff options
author | Luca Deri <deri@ntop.org> | 2015-11-27 00:29:19 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2015-11-27 00:29:19 +0100 |
commit | f04c3c6acb59de55741b112dfcdd19cc9379db9d (patch) | |
tree | 1c337c285f17d51b5ce662504a05282c5e78aa72 /src/lib/protocols | |
parent | 80171b7c541d6496aa5a9743e47ceff7767d8fa0 (diff) |
Minor fix
Diffstat (limited to 'src/lib/protocols')
-rw-r--r-- | src/lib/protocols/oscar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/protocols/oscar.c b/src/lib/protocols/oscar.c index 7222768c3..a43394a8d 100644 --- a/src/lib/protocols/oscar.c +++ b/src/lib/protocols/oscar.c @@ -30,7 +30,7 @@ /* Flap channels */ #define SIGNON 0x01 #define DATA 0x02 -#define ERROR 0x03 +#define O_ERROR 0x03 #define SIGNOFF 0x04 #define KEEP_ALIVE 0x05 @@ -101,7 +101,7 @@ static void ndpi_search_oscar_tcp_connect(struct ndpi_detection_module_struct { int excluded = 0; - u_int8_t channel; +// u_int8_t channel; u_int16_t family; u_int16_t type; u_int16_t flag; @@ -576,7 +576,7 @@ static void ndpi_search_oscar_tcp_connect(struct ndpi_detection_module_struct ERROR -> FLAP__ERROR_CHANNEL_0x03 A FLAP error - rare */ - if (channel == ERROR) + if (channel == O_ERROR) { NDPI_LOG(NDPI_PROTOCOL_OSCAR, ndpi_struct, NDPI_LOG_DEBUG, "OSCAR Detected - Error frame \n"); ndpi_int_oscar_add_connection(ndpi_struct, flow); |