Main Page | Alphabetical List | Data Structures | File List | Data Fields | Globals | Related Pages

loopif.h File Reference

#include "lwip/netif.h"

Include dependency graph for loopif.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

err_t loopif_init (struct netif *netif)


Function Documentation

err_t loopif_init struct netif netif  ) 
 

Definition at line 70 of file loopif.c.

References ERR_OK, loopif_output(), netif::name, and netif::output.

00071 {
00072   netif->name[0] = 'l';
00073   netif->name[1] = 'o';
00074   netif->output = loopif_output;
00075   return ERR_OK;
00076 }

Here is the call graph for this function:


Generated on Wed Jan 14 12:59:06 2004 for RTL-lwIP-0.4 by doxygen 1.3.4