From 4c301d903dfc3d011e673a8772d4ac75e99bbd2a Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Tue, 17 Dec 2013 21:07:36 +0100 Subject: Reduce the NETLINK pointer complexity Make the NETLINK connection pointer and user counter local global variables inside netlink.c only. Where NETLINK calls via libnl is required, rather use get_nlc() to get a NETLINK connection. This also prepares the next step, to get rid of the struct etherinfo_obj_data wrapper. Signed-off-by: David Sommerseth --- python-ethtool/etherinfo.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'python-ethtool/etherinfo.h') diff --git a/python-ethtool/etherinfo.h b/python-ethtool/etherinfo.h index 1997807..5b8c874 100644 --- a/python-ethtool/etherinfo.h +++ b/python-ethtool/etherinfo.h @@ -19,10 +19,11 @@ typedef enum {NLQRY_LINK, NLQRY_ADDR4, NLQRY_ADDR6} nlQuery; /**< Supported query types in the etherinfo code */ -int get_etherinfo(struct etherinfo_obj_data *data, nlQuery query); +int get_etherinfo(etherinfo_py *data, nlQuery query); void free_etherinfo(struct etherinfo *ptr); -int open_netlink(struct etherinfo_obj_data *); -void close_netlink(struct etherinfo_obj_data *); +int open_netlink(etherinfo_py *); +struct nl_sock * get_nlc(); +void close_netlink(etherinfo_py *); #endif -- cgit