From 52d987b603f49d996b4060f43265d1cf43c3c482 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Tue, 5 Jul 2022 17:00:21 +0200 Subject: SMTP with STARTTLS is now identified as SMTPS --- src/lib/protocols/mail_smtp.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/lib/protocols/mail_smtp.c') diff --git a/src/lib/protocols/mail_smtp.c b/src/lib/protocols/mail_smtp.c index 3d2e8d043..fddd42b97 100644 --- a/src/lib/protocols/mail_smtp.c +++ b/src/lib/protocols/mail_smtp.c @@ -30,22 +30,6 @@ #include "ndpi_api.h" -#define SMTP_BIT_220 0x01 -#define SMTP_BIT_250 0x02 -#define SMTP_BIT_235 0x04 -#define SMTP_BIT_334 0x08 -#define SMTP_BIT_354 0x10 -#define SMTP_BIT_HELO_EHLO 0x20 -#define SMTP_BIT_MAIL 0x40 -#define SMTP_BIT_RCPT 0x80 -#define SMTP_BIT_AUTH_LOGIN 0x100 -#define SMTP_BIT_STARTTLS 0x200 -#define SMTP_BIT_DATA 0x400 -#define SMTP_BIT_NOOP 0x800 -#define SMTP_BIT_RSET 0x1000 -#define SMTP_BIT_TlRM 0x2000 -#define SMTP_BIT_AUTH_PLAIN 0x4000 - /* #define SMTP_DEBUG 1 */ extern int processTLSBlock(struct ndpi_detection_module_struct *ndpi_struct, -- cgit v1.2.3