diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-01-14 13:50:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-01-14 13:50:21 +0000 |
commit | 419718e99fc1ada4ad2cd83aa1b3b09b8ad0ed37 (patch) | |
tree | 424be9f1758c753edf121f2f916f09fbe1b20f7c | |
parent | 9eb73ee6b7427f8a649f553685077b38b7b45c68 (diff) | |
download | upstream-419718e99fc1ada4ad2cd83aa1b3b09b8ad0ed37.tar.gz upstream-419718e99fc1ada4ad2cd83aa1b3b09b8ad0ed37.tar.bz2 upstream-419718e99fc1ada4ad2cd83aa1b3b09b8ad0ed37.zip |
libnl-tiny: export unl_genl_multicast_id()
SVN-Revision: 29743
-rw-r--r-- | package/libnl-tiny/src/include/unl.h | 1 | ||||
-rw-r--r-- | package/libnl-tiny/src/unl.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/libnl-tiny/src/include/unl.h b/package/libnl-tiny/src/include/unl.h index 57e348ae1d..4fe7dc745d 100644 --- a/package/libnl-tiny/src/include/unl.h +++ b/package/libnl-tiny/src/include/unl.h @@ -25,6 +25,7 @@ int unl_genl_request(struct unl *unl, struct nl_msg *msg, unl_cb handler, void * int unl_genl_request_single(struct unl *unl, struct nl_msg *msg, struct nl_msg **dest); void unl_genl_loop(struct unl *unl, unl_cb handler, void *arg); +int unl_genl_multicast_id(struct unl *unl, const char *name); int unl_genl_subscribe(struct unl *unl, const char *name); int unl_genl_unsubscribe(struct unl *unl, const char *name); diff --git a/package/libnl-tiny/src/unl.c b/package/libnl-tiny/src/unl.c index 71487e0c10..b38dab8397 100644 --- a/package/libnl-tiny/src/unl.c +++ b/package/libnl-tiny/src/unl.c @@ -173,7 +173,7 @@ void unl_genl_loop(struct unl *unl, unl_cb handler, void *arg) nl_cb_put(cb); } -static int unl_genl_multicast_id(struct unl *unl, const char *name) +int unl_genl_multicast_id(struct unl *unl, const char *name) { struct nlattr *tb[CTRL_ATTR_MCAST_GRP_MAX + 1]; struct nlattr *groups, *group; |