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