[BACK]Return to route.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / net

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/net/route.c between version 1.41 and 1.42

version 1.41, 2001/01/27 10:39:33 version 1.42, 2001/01/27 11:07:59
Line 138  struct pool rttimer_pool; /* pool for rt
Line 138  struct pool rttimer_pool; /* pool for rt
 struct callout rt_timer_ch; /* callout for rt_timer_timer() */  struct callout rt_timer_ch; /* callout for rt_timer_timer() */
   
 static int rtdeletemsg __P((struct rtentry *));  static int rtdeletemsg __P((struct rtentry *));
 static int rtflushit __P((struct radix_node *, void *));  static int rtflushclone1 __P((struct radix_node *, void *));
 static void rtflushclone __P((struct radix_node_head *, struct rtentry *));  static void rtflushclone __P((struct radix_node_head *, struct rtentry *));
   
 void  void
Line 406  rtdeletemsg(rt)
Line 406  rtdeletemsg(rt)
 }  }
   
 static int  static int
 rtflushit(rn, arg)  rtflushclone1(rn, arg)
         struct radix_node *rn;          struct radix_node *rn;
         void *arg;          void *arg;
 {  {
Line 431  rtflushclone(rnh, parent)
Line 431  rtflushclone(rnh, parent)
         if (!rnh->rnh_walktree)          if (!rnh->rnh_walktree)
                 panic("rtflushclone: no rnh_walktree");                  panic("rtflushclone: no rnh_walktree");
 #endif  #endif
         rnh->rnh_walktree(rnh, rtflushit, (void *)parent);          rnh->rnh_walktree(rnh, rtflushclone1, (void *)parent);
 }  }
   
 /*  /*

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

CVSweb <webmaster@jp.NetBSD.org>