Public wrapper function to selectroute(). */
| 888 | |
| 889 | /* Public wrapper function to selectroute(). */ |
| 890 | int |
| 891 | in6_selectroute(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts, |
| 892 | struct ip6_moptions *mopts, struct route_in6 *ro, |
| 893 | struct ifnet **retifp, struct nhop_object **retnh, u_int fibnum, uint32_t flowid) |
| 894 | { |
| 895 | |
| 896 | return (selectroute(dstsock, opts, mopts, ro, retifp, |
| 897 | retnh, 0, fibnum, flowid)); |
| 898 | } |
| 899 | |
| 900 | /* |
| 901 | * Default hop limit selection. The precedence is as follows: |
no test coverage detected