a82212bd36e1074408974b466798b9966bbaf49bvboxsync/*
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * Copyright (c) 2001, Swedish Institute of Computer Science.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * All rights reserved.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * Redistribution and use in source and binary forms, with or without
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * modification, are permitted provided that the following conditions
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * are met:
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * 1. Redistributions of source code must retain the above copyright
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * notice, this list of conditions and the following disclaimer.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * 2. Redistributions in binary form must reproduce the above copyright
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * notice, this list of conditions and the following disclaimer in the
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * documentation and/or other materials provided with the distribution.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * 3. Neither the name of the Institute nor the names of its contributors
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * may be used to endorse or promote products derived from this software
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * without specific prior written permission.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * SUCH DAMAGE.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * This file is part of the lwIP TCP/IP stack.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * Author: Adam Dunkels <adam@sics.se>
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync */
a82212bd36e1074408974b466798b9966bbaf49bvboxsync#ifndef __NETIF_SLIPIF_H__
a82212bd36e1074408974b466798b9966bbaf49bvboxsync#define __NETIF_SLIPIF_H__
a82212bd36e1074408974b466798b9966bbaf49bvboxsync
a82212bd36e1074408974b466798b9966bbaf49bvboxsync#include "lwip/netif.h"
a82212bd36e1074408974b466798b9966bbaf49bvboxsync
a82212bd36e1074408974b466798b9966bbaf49bvboxsyncerr_t slipif_init(struct netif * netif);
a82212bd36e1074408974b466798b9966bbaf49bvboxsync
a82212bd36e1074408974b466798b9966bbaf49bvboxsync#endif
a82212bd36e1074408974b466798b9966bbaf49bvboxsync