aboutsummaryrefslogtreecommitdiff
path: root/lib/netlink.c
diff options
context:
space:
mode:
authorJesse Gross <jesse@nicira.com>2011-09-23 11:53:12 -0700
committerJesse Gross <jesse@nicira.com>2011-09-23 15:27:49 -0700
commit0b6c119bb7e62c70770a18504ae4204702020435 (patch)
tree68789ff9347da0d60cb4383788429c27ebd55d39 /lib/netlink.c
parent1e276d1a10539a8cd97d2ad63c073a9a43f0f1ef (diff)
netlink: Expose version of nl_attr_find for key and len.
Many of our functions pass around a pointer to Netlink attributes and a length. This exposes the version of nl_attr_find that takes that format so it can be used by callers outside the Netlink library.
Diffstat (limited to 'lib/netlink.c')
-rw-r--r--lib/netlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/netlink.c b/lib/netlink.c
index ec358495..b4de3ed7 100644
--- a/lib/netlink.c
+++ b/lib/netlink.c
@@ -615,7 +615,7 @@ nl_parse_nested(const struct nlattr *nla, const struct nl_policy policy[],
return nl_policy_parse(&buf, 0, policy, attrs, n_attrs);
}
-static const struct nlattr *
+const struct nlattr *
nl_attr_find__(const struct nlattr *attrs, size_t size, uint16_t type)
{
const struct nlattr *nla;