diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2015-07-13 15:01:11 +0200 |
---|---|---|
committer | Luca Deri <lucaderi@users.noreply.github.com> | 2015-07-13 15:01:11 +0200 |
commit | f948e76c45dbeb450e961e98feb5ab7456169bd0 (patch) | |
tree | cb844ec4035d166b8e6d18f68530908113261793 | |
parent | 085d7f0ed470b45bc40c14fb9ab43bc370330779 (diff) | |
parent | e3e8b5c6e4f781c0f1053057ce557f0f780911a5 (diff) |
Merge pull request #65 from kYroL01/dev
fixed Oscar family_type
-rw-r--r-- | src/lib/protocols/oscar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/oscar.c b/src/lib/protocols/oscar.c index f5ce1dc18..7222768c3 100644 --- a/src/lib/protocols/oscar.c +++ b/src/lib/protocols/oscar.c @@ -521,7 +521,7 @@ static void ndpi_search_oscar_tcp_connect(struct ndpi_detection_module_struct } } /* Family 0x0017 */ - if (family == htons(SERVER_STORED_INFO)) + if (family == htons(INIT_AUTH)) { switch (type) { @@ -543,7 +543,7 @@ static void ndpi_search_oscar_tcp_connect(struct ndpi_detection_module_struct /* TODO */ } /* Family 0x0085 */ - if (family == htons(SERVER_STORED_INFO)) + if (family == htons(IS_EXT)) { switch (type) { |