]> Pileus Git - ~andy/fetchmail/blobdiff - smtp.h
Jonathan T. Agnew's massive code cleanup.
[~andy/fetchmail] / smtp.h
diff --git a/smtp.h b/smtp.h
index d4959ffe6790499571f64291841b81ce1ef2610d..9a39f5dce7a7b9e84fd3118ffd59e0cfff80ffe5 100644 (file)
--- a/smtp.h
+++ b/smtp.h
 #define ESMTP_SIZE     0x02
 #define ESMTP_ETRN     0x04
 
-int SMTP_helo(int socket,char *host);
-int SMTP_ehlo(int socket,char *host,int *opt);
-int SMTP_from(int socket,char *from,char *opts);
-int SMTP_rcpt(int socket,char *to);
+int SMTP_helo(int socket,const char *host);
+int SMTP_ehlo(int socket,const char *host,int *opt);
+int SMTP_from(int socket,const char *from,const char *opts);
+int SMTP_rcpt(int socket,const char *to);
 int SMTP_data(int socket);
 int SMTP_eom(int socket);
 int SMTP_rset(int socket);