diff options
author | kyrol <fci1908@gmail.com> | 2018-11-09 14:53:33 +0100 |
---|---|---|
committer | kyrol <fci1908@gmail.com> | 2018-11-09 14:53:33 +0100 |
commit | 6d929bf4cc48d54db91678a24ef0afb2e20382d7 (patch) | |
tree | 5412e029d205992abfaaff72d2a17c135c6913cd /src/lib/protocols/stun.c | |
parent | de9b2b202e77ef6a2a4442b293859009f005458c (diff) | |
parent | b31337db4a8fadc90ef6e45d761696d1d0d50182 (diff) |
Merge branch 'dev' of https://github.com/ntop/nDPI into dev
Diffstat (limited to 'src/lib/protocols/stun.c')
-rw-r--r-- | src/lib/protocols/stun.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/lib/protocols/stun.c b/src/lib/protocols/stun.c index ad6a585f9..cb1322e5e 100644 --- a/src/lib/protocols/stun.c +++ b/src/lib/protocols/stun.c @@ -106,7 +106,7 @@ static ndpi_int_stun_t ndpi_int_check_stun(struct ndpi_detection_module_struct * case 0x4002: /* These are the only messages apparently whatsapp voice can use */ break; - + case 0x8054: /* Candidate Identifier */ if((len == 4) && ((offset+7) < payload_length) @@ -119,6 +119,20 @@ static ndpi_int_stun_t ndpi_int_check_stun(struct ndpi_detection_module_struct * } break; + case 0x8055: /* MS Service Quality (skype?) */ + break; + + /* Proprietary fields found on skype calls */ + case 0x24DF: + case 0x3802: + case 0x8036: + case 0x8095: + case 0x0800: + /* printf("====>>>> %04X\n", attribute); */ + flow->protos.stun_ssl.stun.is_skype = 1; + return(NDPI_IS_STUN); + break; + case 0x8070: /* Implementation Version */ if((len == 4) && ((offset+7) < payload_length) |