summaryrefslogtreecommitdiff
path: root/include/netlink/attr.h
diff options
context:
space:
mode:
authorThomas Graf <tgr@lsx.localdomain>2008-05-14 18:26:47 +0200
committerThomas Graf <tgr@lsx.localdomain>2008-05-14 18:26:47 +0200
commiteed2afaab7aa72fae393a395a8879b91a922ff5e (patch)
treee28561df020521ed10854fdfa07c0e0c7e701c13 /include/netlink/attr.h
parent7179b2d85964ef8fec8eca3ad661de9f38daa0ba (diff)
downloadlibnl-eed2afaab7aa72fae393a395a8879b91a922ff5e.tar.gz
Remove obsolete nla_get_addr() and nla_get_data()
Replaces obsolete calls to nla_get_addr() and nla_get_data() with nl_addr_alloc_attr() respectively nl_data_alloc_attr(). Also fixes missing error handling while parsing routing multipath configuration.
Diffstat (limited to 'include/netlink/attr.h')
-rw-r--r--include/netlink/attr.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/netlink/attr.h b/include/netlink/attr.h
index 756cd158..052587f1 100644
--- a/include/netlink/attr.h
+++ b/include/netlink/attr.h
@@ -126,10 +126,6 @@ extern int nla_nest_end(struct nl_msg *, struct nlattr *);
extern int nla_parse_nested(struct nlattr **, int, struct nlattr *,
struct nla_policy *);
-/* DEPRECATED! */
-extern struct nl_data * nla_get_data(struct nlattr *);
-extern struct nl_addr * nla_get_addr(struct nlattr *, int);
-
/**
* @name Attribute Construction (Exception Based)
* @{