Fixes found in smtp testing

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@356 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2007-10-27 18:56:04 +00:00
parent f43ffa05aa
commit 00093c0a08
6 changed files with 80 additions and 51 deletions
+5 -2
View File
@@ -57,8 +57,11 @@
****************************************************************************/
extern void *smtp_open(void);
extern void smtp_configure(void *handle, char *localhostname, void *smtpserver);
extern int smtp_send(void *handle, char *to, char *cc, char *from, char *subject, char *msg, int msglen);
extern void smtp_configure(void *handle, const char *localhostname,
const uip_ipaddr_t *paddr);
extern int smtp_send(void *handle, const char *to, const char *cc,
const char *from, const char *subject,
const char *msg, int msglen);
extern void smtp_close(void *handle);
#endif /* __SMTP_H__ */