Jeff Mourich / EthernetNetIf_ChangeHostName
Committer:
JeffM
Date:
Sat Nov 06 14:11:02 2010 +0000
Revision:
0:fd3b85615428
MBED ID 1A

Who changed what in which revision?

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