Yasushi TAUCHI / Mbed 2 deprecated giken9_HTMLServer_Sample

Dependencies:   EthernetInterface HttpServer TextLCD mbed-rpc mbed-rtos mbed Socket lwip-eth lwip-sys lwip

Committer:
yueee_yt
Date:
Wed Mar 12 04:39:15 2014 +0000
Revision:
2:14b689a85306
Parent:
0:7766f6712673
bug fix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yueee_yt 0:7766f6712673 1 /*
yueee_yt 0:7766f6712673 2 * Copyright (c) 2001, Swedish Institute of Computer Science.
yueee_yt 0:7766f6712673 3 * All rights reserved.
yueee_yt 0:7766f6712673 4 *
yueee_yt 0:7766f6712673 5 * Redistribution and use in source and binary forms, with or without
yueee_yt 0:7766f6712673 6 * modification, are permitted provided that the following conditions
yueee_yt 0:7766f6712673 7 * are met:
yueee_yt 0:7766f6712673 8 * 1. Redistributions of source code must retain the above copyright
yueee_yt 0:7766f6712673 9 * notice, this list of conditions and the following disclaimer.
yueee_yt 0:7766f6712673 10 * 2. Redistributions in binary form must reproduce the above copyright
yueee_yt 0:7766f6712673 11 * notice, this list of conditions and the following disclaimer in the
yueee_yt 0:7766f6712673 12 * documentation and/or other materials provided with the distribution.
yueee_yt 0:7766f6712673 13 * 3. Neither the name of the Institute nor the names of its contributors
yueee_yt 0:7766f6712673 14 * may be used to endorse or promote products derived from this software
yueee_yt 0:7766f6712673 15 * without specific prior written permission.
yueee_yt 0:7766f6712673 16 *
yueee_yt 0:7766f6712673 17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
yueee_yt 0:7766f6712673 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
yueee_yt 0:7766f6712673 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
yueee_yt 0:7766f6712673 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
yueee_yt 0:7766f6712673 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
yueee_yt 0:7766f6712673 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
yueee_yt 0:7766f6712673 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
yueee_yt 0:7766f6712673 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
yueee_yt 0:7766f6712673 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
yueee_yt 0:7766f6712673 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
yueee_yt 0:7766f6712673 27 * SUCH DAMAGE.
yueee_yt 0:7766f6712673 28 *
yueee_yt 0:7766f6712673 29 * This file is part of the lwIP TCP/IP stack.
yueee_yt 0:7766f6712673 30 *
yueee_yt 0:7766f6712673 31 * Author: Adam Dunkels <adam@sics.se>
yueee_yt 0:7766f6712673 32 *
yueee_yt 0:7766f6712673 33 */
yueee_yt 0:7766f6712673 34 #ifndef __NETIF_SLIPIF_H__
yueee_yt 0:7766f6712673 35 #define __NETIF_SLIPIF_H__
yueee_yt 0:7766f6712673 36
yueee_yt 0:7766f6712673 37 #include "lwip/netif.h"
yueee_yt 0:7766f6712673 38
yueee_yt 0:7766f6712673 39 #ifdef __cplusplus
yueee_yt 0:7766f6712673 40 extern "C" {
yueee_yt 0:7766f6712673 41 #endif
yueee_yt 0:7766f6712673 42
yueee_yt 0:7766f6712673 43 err_t slipif_init(struct netif * netif);
yueee_yt 0:7766f6712673 44 void slipif_poll(struct netif *netif);
yueee_yt 0:7766f6712673 45
yueee_yt 0:7766f6712673 46 #ifdef __cplusplus
yueee_yt 0:7766f6712673 47 }
yueee_yt 0:7766f6712673 48 #endif
yueee_yt 0:7766f6712673 49
yueee_yt 0:7766f6712673 50 #endif
yueee_yt 0:7766f6712673 51