X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/6b6847272dc5d21ca6fcd23bf20e16193b226c0a..86c5ebc87:/mts/smtp/smtp.h?ds=inline diff --git a/mts/smtp/smtp.h b/mts/smtp/smtp.h index 2ed5cc22..953b3ded 100644 --- a/mts/smtp/smtp.h +++ b/mts/smtp/smtp.h @@ -16,9 +16,14 @@ struct smtp { * prototypes */ /* int client (); */ -int sm_init (char *, char *, char *, int, int, int, int, int, char *, char *, - const char *, int); -int sm_winit (char *); +/* TLS flags */ +#define S_STARTTLS 0x01 +#define S_INITTLS 0x02 +#define S_TLSENABLEMASK 0x03 +#define S_NOVERIFY 0x04 +int sm_init (char *, char *, char *, int, int, int, int, const char *, + const char *, const char *, int); +int sm_winit (char *, int, int); int sm_wadr (char *, char *, char *); int sm_waend (void); int sm_wtxt (char *, int);