in6_rmx.c (ead85fe415dd32e47eb57744c4b214e33ef89938) in6_rmx.c (34a5582c47c7ec24a6bf7de8af32b1334a79f58e)
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

181
182 return (1);
183}
184#endif
185
186/*
187 * Extended API for IPv6 FIB support.
188 */
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

181
182 return (1);
183}
184#endif
185
186/*
187 * Extended API for IPv6 FIB support.
188 */
189void
190in6_rtredirect(struct sockaddr *dst, struct sockaddr *gw, struct sockaddr *nm,
191 int flags, struct sockaddr *src, u_int fibnum)
192{
193
194 rtredirect_fib(dst, gw, nm, flags, src, fibnum);
195}
196
197int
198in6_rtrequest(int req, struct sockaddr *dst, struct sockaddr *gw,
199 struct sockaddr *mask, int flags, struct rtentry **ret_nrt, u_int fibnum)
200{
201
202 return (rtrequest_fib(req, dst, gw, mask, flags, ret_nrt, fibnum));
203}
204

--- 20 unchanged lines hidden ---
189int
190in6_rtrequest(int req, struct sockaddr *dst, struct sockaddr *gw,
191 struct sockaddr *mask, int flags, struct rtentry **ret_nrt, u_int fibnum)
192{
193
194 return (rtrequest_fib(req, dst, gw, mask, flags, ret_nrt, fibnum));
195}
196

--- 20 unchanged lines hidden ---