Committer:
mbed714
Date:
Sat Sep 18 23:05:49 2010 +0000
Revision:
0:d616ece2d859

        

Who changed what in which revision?

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