a82212bd36e1074408974b466798b9966bbaf49bvboxsync/*
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * All rights reserved.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * Redistribution and use in source and binary forms, with or without modification,
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * are permitted provided that the following conditions are met:
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * 1. Redistributions of source code must retain the above copyright notice,
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * this list of conditions and the following disclaimer.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * 2. Redistributions in binary form must reproduce the above copyright notice,
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * this list of conditions and the following disclaimer in the documentation
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * and/or other materials provided with the distribution.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * 3. The name of the author may not be used to endorse or promote products
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * derived from this software without specific prior written permission.
a82212bd36e1074408974b466798b9966bbaf49bvboxsync *
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
a82212bd36e1074408974b466798b9966bbaf49bvboxsync * OF 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_LOOPIF_H__
a82212bd36e1074408974b466798b9966bbaf49bvboxsync#define __NETIF_LOOPIF_H__
a82212bd36e1074408974b466798b9966bbaf49bvboxsync
a82212bd36e1074408974b466798b9966bbaf49bvboxsync#include "lwip/netif.h"
a82212bd36e1074408974b466798b9966bbaf49bvboxsync
a82212bd36e1074408974b466798b9966bbaf49bvboxsyncerr_t loopif_init(struct netif *netif);
a82212bd36e1074408974b466798b9966bbaf49bvboxsync
a82212bd36e1074408974b466798b9966bbaf49bvboxsync#endif /* __NETIF_LOOPIF_H__ */