Add raw_init in tcpip_init + minor changes (tabs, ident, coding style...)

This commit is contained in:
fbernon 2007-08-17 09:57:37 +00:00
parent d907bcd57a
commit e0bf309bb5
2 changed files with 29 additions and 26 deletions

View File

@ -570,16 +570,19 @@ tcpip_init(void (* initfunc)(void *), void *arg)
#if LWIP_ARP
etharp_init();
#endif /* LWIP_ARP */
#if LWIP_AUTOIP
autoip_init();
#endif /* LWIP_AUTOIP */
ip_init();
#if LWIP_RAW
raw_init();
#endif /* LWIP_RAW */
#if LWIP_UDP
udp_init();
#endif /* LWIP_UDP */
#if LWIP_TCP
tcp_init();
#endif /* LWIP_TCP */
#if LWIP_AUTOIP
autoip_init();
#endif /* LWIP_AUTOIP */
tcpip_init_done = initfunc;
tcpip_init_done_arg = arg;