Contiki 3.x
httpd.h
1 /*
2  * Copyright (c) 2001-2005, 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.
13  * 3. The name of the author may not be used to endorse or promote
14  * 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  *
31  *
32  */
33 
34 #ifndef HTTPD_H_
35 #define HTTPD_H_
36 
37 
38 #include "contiki-net.h"
39 #include "httpd-fs.h"
40 #include "lib/petsciiconv.h"
41 
42 struct httpd_state {
43  unsigned char timer;
44  struct psock sin, sout;
45  struct pt outputpt, scriptpt;
46  char inputbuf[50];
47  char filename[20];
48  char state;
49  struct httpd_fs_file file;
50  int len;
51  char *scriptptr;
52  int scriptlen;
53  union {
54  unsigned short count;
55  void *ptr;
56  } u;
57 };
58 /* httpd string storage is in RAM by default. Other storage can be defined here */
59 #define HTTPD_STRING_TYPE PROGMEM_TYPE
60 #define PROGMEM_TYPE 1
61 #define EEPROM_TYPE 2
62 
63 #if HTTPD_STRING_TYPE==PROGMEM_TYPE
64 #define HTTPD_STRING_ATTR PROGMEM
65 /* These will fail if the server strings are above 64K in program flash */
66 #define httpd_memcpy memcpy_P
67 #define httpd_strcpy strcpy_P
68 #define httpd_strcmp strcmp_P
69 #define httpd_strncmp strncmp_P
70 #define httpd_strlen strlen_P
71 #define httpd_snprintf snprintf_P
72 #elif HTTPD_STRING_TYPE==EEPROM_TYPE
73 #define HTTPD_STRING_ATTR EEPROM
74 /* These are not implemented as yet */
75 #define httpd_memcpy memcpy_E
76 #define httpd_strcpy strcpy_E
77 #define httpd_strcmp strcmp_E
78 #define httpd_strncmp strncmp_E
79 #define httpd_strlen strlen_E
80 #define httpd_snprintf snprintf_E
81 #else
82 #define httpd_memcpy memcpy
83 #define httpd_strcpy strcpy
84 #define httpd_strcmp strcmp
85 #define httpd_strncmp strncmp
86 #define httpd_strlen strlen
87 #define httpd_snprintf snprintf
88 #endif
89 
90 void httpd_init(void);
91 void httpd_appcall(void *state);
92 
93 #endif /* HTTPD_H_ */
A timer.
Definition: timer.h:86
PETSCII/ASCII conversion functions.
The representation of a protosocket.
Definition: psock.h:112