forked from Imagelibrary/rtems
* libnetworking/loop.h, libnetworking/net/if_loop.c, libnetworking/rtems/rtems_glue.c, libmisc/dummy/dummy-networking.c: Initialize loop back interface during normal initialization via rtems_bsdnet_initialize_network().
21 lines
238 B
C
21 lines
238 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _RTEMS_BSDNET_LOOP_H
|
|
#define _RTEMS_BSDNET_LOOP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define NLOOP 1
|
|
|
|
void rtems_bsdnet_initialize_loop(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _RTEMS_BSDNET_LOOP_H */
|