xref: /nrf52832-nimble/rt-thread/components/net/uip/apps/webserver/webserver.h (revision 104654410c56c573564690304ae786df310c91fc)
1*10465441SEvalZero /*
2*10465441SEvalZero  * Copyright (c) 2002, Adam Dunkels.
3*10465441SEvalZero  * All rights reserved.
4*10465441SEvalZero  *
5*10465441SEvalZero  * Redistribution and use in source and binary forms, with or without
6*10465441SEvalZero  * modification, are permitted provided that the following conditions
7*10465441SEvalZero  * are met:
8*10465441SEvalZero  * 1. Redistributions of source code must retain the above copyright
9*10465441SEvalZero  *    notice, this list of conditions and the following disclaimer.
10*10465441SEvalZero  * 2. Redistributions in binary form must reproduce the above
11*10465441SEvalZero  *    copyright notice, this list of conditions and the following
12*10465441SEvalZero  *    disclaimer in the documentation and/or other materials provided
13*10465441SEvalZero  *    with the distribution.
14*10465441SEvalZero  * 3. The name of the author may not be used to endorse or promote
15*10465441SEvalZero  *    products derived from this software without specific prior
16*10465441SEvalZero  *    written permission.
17*10465441SEvalZero  *
18*10465441SEvalZero  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
19*10465441SEvalZero  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20*10465441SEvalZero  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21*10465441SEvalZero  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
22*10465441SEvalZero  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23*10465441SEvalZero  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24*10465441SEvalZero  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25*10465441SEvalZero  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26*10465441SEvalZero  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27*10465441SEvalZero  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28*10465441SEvalZero  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*10465441SEvalZero  *
30*10465441SEvalZero  * This file is part of the uIP TCP/IP stack
31*10465441SEvalZero  *
32*10465441SEvalZero  * $Id: webserver.h,v 1.2 2006/06/11 21:46:38 adam Exp $
33*10465441SEvalZero  *
34*10465441SEvalZero  */
35*10465441SEvalZero #ifndef __WEBSERVER_H__
36*10465441SEvalZero #define __WEBSERVER_H__
37*10465441SEvalZero 
38*10465441SEvalZero #include "httpd.h"
39*10465441SEvalZero 
40*10465441SEvalZero typedef struct httpd_state uip_tcp_appstate_t;
41*10465441SEvalZero /* UIP_APPCALL: the name of the application function. This function
42*10465441SEvalZero    must return void and take no arguments (i.e., C type "void
43*10465441SEvalZero    appfunc(void)"). */
44*10465441SEvalZero #ifndef UIP_APPCALL
45*10465441SEvalZero #define UIP_APPCALL     httpd_appcall
46*10465441SEvalZero #endif
47*10465441SEvalZero 
48*10465441SEvalZero 
49*10465441SEvalZero #endif /* __WEBSERVER_H__ */
50