summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/dummy/dummy.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/dummy/dummy.c')
-rw-r--r--cpukit/libmisc/dummy/dummy.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/cpukit/libmisc/dummy/dummy.c b/cpukit/libmisc/dummy/dummy.c
index d577689114..b062c06091 100644
--- a/cpukit/libmisc/dummy/dummy.c
+++ b/cpukit/libmisc/dummy/dummy.c
@@ -36,43 +36,3 @@ int main( int, char **, char **);
#include <rtems/confdefs.h>
-/* Loopback Network Configuration */
-#if defined(RTEMS_NETWORKING)
- #include <rtems/rtems_bsdnet.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
-
- extern int rtems_bsdnet_loopattach(struct rtems_bsdnet_ifconfig *, int);
-
- static struct rtems_bsdnet_ifconfig loopback_config = {
- "lo0", /* name */
- rtems_bsdnet_loopattach, /* attach function */
- NULL, /* link to next interface */
- "127.0.0.1", /* IP address */
- "255.0.0.0", /* IP net mask */
- 0, /* hardware_address */
- 0, 0, 0, 0,
- 0, 0, 0,
- 0
- };
-
- struct rtems_bsdnet_config rtems_bsdnet_config = {
- &loopback_config, /* Network interface */
- NULL, /* Use fixed network configuration */
- 0, /* Default network task priority */
- 0, /* Default mbuf capacity */
- 0, /* Default mbuf cluster capacity */
- "testSystem", /* Host name */
- "nowhere.com", /* Domain name */
- "127.0.0.1", /* Gateway */
- "127.0.0.1", /* Log host */
- {"127.0.0.1" }, /* Name server(s) */
- {"127.0.0.1" }, /* NTP server(s) */
- 1, /* sb_efficiency */
- 0, /* udp_tx_buf_size */
- 0, /* udp_rx_buf_size */
- 0, /* tcp_tx_buf_size */
- 0 /* tcp_rx_buf_size */
- };
-#endif
-