in_rmx.c (ead85fe415dd32e47eb57744c4b214e33ef89938) in_rmx.c (34a5582c47c7ec24a6bf7de8af32b1334a79f58e)
1/*-
2 * Copyright 1994, 1995 Massachusetts Institute of Technology
3 *
4 * Permission to use, copy, modify, and distribute this software and
5 * its documentation for any purpose and without fee is hereby
6 * granted, provided that both the above copyright notice and this
7 * permission notice appear in all copies, that both the above
8 * copyright notice and this permission notice appear in all

--- 183 unchanged lines hidden (view full) ---

192 * eventually this order will be reversed,
193 */
194void
195in_rtalloc_ign(struct route *ro, u_long ignflags, u_int fibnum)
196{
197 rtalloc_ign_fib(ro, ignflags, fibnum);
198}
199
1/*-
2 * Copyright 1994, 1995 Massachusetts Institute of Technology
3 *
4 * Permission to use, copy, modify, and distribute this software and
5 * its documentation for any purpose and without fee is hereby
6 * granted, provided that both the above copyright notice and this
7 * permission notice appear in all copies, that both the above
8 * copyright notice and this permission notice appear in all

--- 183 unchanged lines hidden (view full) ---

192 * eventually this order will be reversed,
193 */
194void
195in_rtalloc_ign(struct route *ro, u_long ignflags, u_int fibnum)
196{
197 rtalloc_ign_fib(ro, ignflags, fibnum);
198}
199
200void
201in_rtredirect(struct sockaddr *dst,
202 struct sockaddr *gateway,
203 struct sockaddr *netmask,
204 int flags,
205 struct sockaddr *src,
206 u_int fibnum)
207{
208 rtredirect_fib(dst, gateway, netmask, flags, src, fibnum);
209}
210