1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/netlink.h>
3 #include <linux/rtnetlink.h>
4 #include <linux/types.h>
5 #include <net/net_namespace.h>
6 #include <net/netlink.h>
10 int rtm_getroute_parse_ip_proto(struct nlattr *attr, u8 *ip_proto, u8 family,
11 struct netlink_ext_ack *extack)
13 *ip_proto = nla_get_u8(attr);
20 if (family != AF_INET)
23 #if IS_ENABLED(CONFIG_IPV6)
25 if (family != AF_INET6)
30 NL_SET_ERR_MSG(extack, "Unsupported ip proto");
33 EXPORT_SYMBOL_GPL(rtm_getroute_parse_ip_proto);