diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2018-05-23 16:53:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-23 16:53:26 +0200 |
commit | fb7416cb9da6b09bfbfa553be7892ba0997c270b (patch) | |
tree | 80c7407ff92bb72b67f8758ac28b16655891ba51 /src/lib/protocols/ssl.c | |
parent | 05cef1d69aa6e26a75efdef3d8526802905ee710 (diff) | |
parent | 32c62faa78eaf98b611134f6a340ddf63fe03bff (diff) |
Merge pull request #565 from Dark-Vex/dev
SMTPS on port 587 is not detected and Updated AmazonVideo
Diffstat (limited to 'src/lib/protocols/ssl.c')
-rw-r--r-- | src/lib/protocols/ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/ssl.c b/src/lib/protocols/ssl.c index aa649f579..7719eded9 100644 --- a/src/lib/protocols/ssl.c +++ b/src/lib/protocols/ssl.c @@ -62,7 +62,7 @@ static u_int32_t ndpi_ssl_refine_master_protocol(struct ndpi_detection_module_st u_int16_t sport = ntohs(packet->tcp->source); u_int16_t dport = ntohs(packet->tcp->dest); - if((sport == 465) || (dport == 465)) + if((sport == 465) || (dport == 465) || (sport == 587) || (dport == 587)) protocol = NDPI_PROTOCOL_MAIL_SMTPS; else if((sport == 993) || (dport == 993) #ifdef NDPI_PROTOCOL_MAIL_IMAP |