Skip to content
Snippets Groups Projects
Commit 1441e2fd authored by Hauke Petersen's avatar Hauke Petersen
Browse files

sys/auto_init: added initialization of ng_udp

parent b1d87527
No related branches found
No related tags found
No related merge requests found
...@@ -98,6 +98,10 @@ ...@@ -98,6 +98,10 @@
#include "net/ng_pktdump.h" #include "net/ng_pktdump.h"
#endif #endif
#ifdef MODULE_NG_UDP
#include "net/ng_udp.h"
#endif
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"
...@@ -296,4 +300,8 @@ void auto_init(void) ...@@ -296,4 +300,8 @@ void auto_init(void)
DEBUG("Auto init ng_ipv6 module.\n"); DEBUG("Auto init ng_ipv6 module.\n");
ng_ipv6_init(); ng_ipv6_init();
#endif #endif
#ifdef MODULE_NG_UDP
DEBUG("Auto init UDP module.\n");
ng_udp_init();
#endif
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment