blob: e10a6deb7b71cb28be4c8da290f208a80b4c66d7 [file] [log] [blame]
adamdunkelsca9ddcb2003-03-19 14:13:31 +00001/*
2 * Copyright (c) 2002, Adam Dunkels.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
adamdunkels06f897e2004-06-06 05:59:20 +000013 * 3. The name of the author may not be used to endorse or promote
adamdunkelsca9ddcb2003-03-19 14:13:31 +000014 * products derived from this software without specific prior
15 * written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * This file is part of the uIP TCP/IP stack.
30 *
oliverschmidt12635002005-05-04 23:51:09 +000031 * $Id: smtp.h,v 1.5 2005/05/04 23:51:09 oliverschmidt Exp $
adamdunkelsca9ddcb2003-03-19 14:13:31 +000032 *
33 */
34#ifndef __SMTP_H__
35#define __SMTP_H__
36
adamdunkelsf2f8cb22004-07-04 11:35:07 +000037#include "uip.h"
adamdunkelsca9ddcb2003-03-19 14:13:31 +000038
39/* Callbacks. */
40#define SMTP_ERR_OK 0
41void smtp_done(unsigned char error);
42
43/* Functions. */
44void smtp_configure(char *localhostname, u16_t *smtpserver);
oliverschmidt12635002005-05-04 23:51:09 +000045unsigned char smtp_send(char *to, char *cc, char *from,
adamdunkelsca9ddcb2003-03-19 14:13:31 +000046 char *subject, char *msg,
oliverschmidt12635002005-05-04 23:51:09 +000047 u8_t msgwidth, u8_t msgheight);
adamdunkelsca9ddcb2003-03-19 14:13:31 +000048
adamdunkelsf2f8cb22004-07-04 11:35:07 +000049/*DISPATCHER_UIPCALL(smtp_appcall, state);*/
50
51void smtp_appcall(void *state);
adamdunkelsca9ddcb2003-03-19 14:13:31 +000052
53
54#ifndef UIP_APPCALL
55#define UIP_APPCALL smtp_appcall
56#endif
57
58#ifndef UIP_APPSTATE_SIZE
59#define UIP_APPSTATE_SIZE (sizeof(struct smtp_state))
60#endif
61
62
63#endif /* __SMTP_H__ */