Dependents:   RTnoV3 RTnoV3_LED RTnoV3_Template RTnoV3_ADC ... more

Committer:
sherckuith
Date:
Sat Dec 31 11:25:27 2011 +0000
Revision:
0:479ce5546098
Ethernet

Who changed what in which revision?

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