#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) |
|
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: