diff options
Diffstat (limited to 'smtp.h')
-rw-r--r-- | smtp.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,8 @@ #ifndef _POPSMTP_ #define _POPSMTP_ +#include <time.h> + #define SMTPBUFSIZE 256 /* SMTP error values */ @@ -21,6 +23,8 @@ #define ESMTP_ATRN 0x08 /* used with ODMR, RFC 2645 */ #define ESMTP_AUTH 0x10 +extern time_t last_smtp_ok; + void SMTP_setmode(char); int SMTP_helo(int socket,const char *host); int SMTP_ehlo(int socket,const char *host, char *name, char *passwd, int *opt); |