From dd060ceed39dfd63a5b282badabe73932b6f1b8a Mon Sep 17 00:00:00 2001 From: christiaans Date: Tue, 4 Jul 2006 08:23:33 +0000 Subject: [PATCH] Added ip_frag_init() to ip_init(). --- src/core/ipv4/ip.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/ipv4/ip.c b/src/core/ipv4/ip.c index 4db68c8e..096b9f9c 100644 --- a/src/core/ipv4/ip.c +++ b/src/core/ipv4/ip.c @@ -67,7 +67,9 @@ void ip_init(void) { - /* no initializations as of yet */ +#if IP_FRAG + ip_frag_init(); +#endif } /**