diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-05-06 11:51:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-05-06 11:51:16 +0000 |
commit | fab34735f341da202bf0b98c6e2cd67cb7578669 (patch) | |
tree | 62f4911b894aa3ce7e05540999a6b9ba87748d8e /package/wprobe/src/user | |
parent | d360f2a1a0640bb5693a85298d2537421731a568 (diff) | |
download | master-187ad058-fab34735f341da202bf0b98c6e2cd67cb7578669.tar.gz master-187ad058-fab34735f341da202bf0b98c6e2cd67cb7578669.tar.bz2 master-187ad058-fab34735f341da202bf0b98c6e2cd67cb7578669.zip |
wprobe: use libnl-tiny instead of libnl
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15632 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wprobe/src/user')
-rw-r--r-- | package/wprobe/src/user/wprobe.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/package/wprobe/src/user/wprobe.c b/package/wprobe/src/user/wprobe.c index d591207daf..1f8df6c7e9 100644 --- a/package/wprobe/src/user/wprobe.c +++ b/package/wprobe/src/user/wprobe.c @@ -35,7 +35,7 @@ #define DPRINTF(fmt, ...) do {} while (0) #endif -static struct nl_handle *handle = NULL; +static struct nl_sock *handle = NULL; static struct nl_cache *cache = NULL; static struct genl_family *family = NULL; static struct nlattr *tb[WPROBE_ATTR_LAST+1]; @@ -89,7 +89,7 @@ wprobe_free(void) if (cache) nl_cache_free(cache); if (handle) - nl_handle_destroy(handle); + nl_socket_free(handle); handle = NULL; cache = NULL; } @@ -97,7 +97,9 @@ wprobe_free(void) int wprobe_init(void) { - handle = nl_handle_alloc(); + int ret; + + handle = nl_socket_alloc(); if (!handle) { DPRINTF("Failed to create handle\n"); goto err; @@ -108,8 +110,8 @@ wprobe_init(void) goto err; } - cache = genl_ctrl_alloc_cache(handle); - if (!cache) { + ret = genl_ctrl_alloc_cache(handle, &cache); + if (ret < 0) { DPRINTF("Failed to allocate netlink cache\n"); goto err; } |