uIP 1.0 based webserver for LPC1114 + ENC28J60

Dependencies:   mbed TMP102

Committer:
ban4jp
Date:
Mon Jun 30 16:00:08 2014 +0000
Revision:
3:a2715e9c7737
Parent:
0:685224d2f66d
backported from Contiki 2.7

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ban4jp 0:685224d2f66d 1 /*
ban4jp 0:685224d2f66d 2 * Copyright (c) 2001-2005, Adam Dunkels.
ban4jp 0:685224d2f66d 3 * All rights reserved.
ban4jp 0:685224d2f66d 4 *
ban4jp 0:685224d2f66d 5 * Redistribution and use in source and binary forms, with or without
ban4jp 0:685224d2f66d 6 * modification, are permitted provided that the following conditions
ban4jp 0:685224d2f66d 7 * are met:
ban4jp 0:685224d2f66d 8 * 1. Redistributions of source code must retain the above copyright
ban4jp 0:685224d2f66d 9 * notice, this list of conditions and the following disclaimer.
ban4jp 0:685224d2f66d 10 * 2. Redistributions in binary form must reproduce the above copyright
ban4jp 0:685224d2f66d 11 * notice, this list of conditions and the following disclaimer in the
ban4jp 0:685224d2f66d 12 * documentation and/or other materials provided with the distribution.
ban4jp 0:685224d2f66d 13 * 3. The name of the author may not be used to endorse or promote
ban4jp 0:685224d2f66d 14 * products derived from this software without specific prior
ban4jp 0:685224d2f66d 15 * written permission.
ban4jp 0:685224d2f66d 16 *
ban4jp 0:685224d2f66d 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
ban4jp 0:685224d2f66d 18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
ban4jp 0:685224d2f66d 19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ban4jp 0:685224d2f66d 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
ban4jp 0:685224d2f66d 21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
ban4jp 0:685224d2f66d 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
ban4jp 0:685224d2f66d 23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
ban4jp 0:685224d2f66d 24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
ban4jp 0:685224d2f66d 25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
ban4jp 0:685224d2f66d 26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
ban4jp 0:685224d2f66d 27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
ban4jp 0:685224d2f66d 28 *
ban4jp 0:685224d2f66d 29 * This file is part of the uIP TCP/IP stack.
ban4jp 0:685224d2f66d 30 *
ban4jp 0:685224d2f66d 31 * $Id: httpd.h,v 1.2 2006/06/11 21:46:38 adam Exp $
ban4jp 0:685224d2f66d 32 *
ban4jp 0:685224d2f66d 33 */
ban4jp 0:685224d2f66d 34
ban4jp 0:685224d2f66d 35 #ifndef __HTTPD_H__
ban4jp 0:685224d2f66d 36 #define __HTTPD_H__
ban4jp 0:685224d2f66d 37
ban4jp 0:685224d2f66d 38 #include "psock.h"
ban4jp 0:685224d2f66d 39 #include "httpd-fs.h"
ban4jp 0:685224d2f66d 40
ban4jp 0:685224d2f66d 41 struct httpd_state {
ban4jp 0:685224d2f66d 42 unsigned char timer;
ban4jp 0:685224d2f66d 43 struct psock sin, sout;
ban4jp 0:685224d2f66d 44 struct pt outputpt, scriptpt;
ban4jp 0:685224d2f66d 45 char inputbuf[50];
ban4jp 0:685224d2f66d 46 char filename[20];
ban4jp 0:685224d2f66d 47 char state;
ban4jp 0:685224d2f66d 48 struct httpd_fs_file file;
ban4jp 0:685224d2f66d 49 int len;
ban4jp 0:685224d2f66d 50 char *scriptptr;
ban4jp 0:685224d2f66d 51 int scriptlen;
ban4jp 0:685224d2f66d 52
ban4jp 0:685224d2f66d 53 unsigned short count;
ban4jp 0:685224d2f66d 54 };
ban4jp 0:685224d2f66d 55
ban4jp 0:685224d2f66d 56 void httpd_init(void);
ban4jp 0:685224d2f66d 57 void httpd_appcall(void);
ban4jp 0:685224d2f66d 58
ban4jp 0:685224d2f66d 59 void httpd_log(char *msg);
ban4jp 0:685224d2f66d 60 void httpd_log_file(u16_t *requester, char *file);
ban4jp 0:685224d2f66d 61
ban4jp 0:685224d2f66d 62 #endif /* __HTTPD_H__ */