diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2010-04-03 13:25:37 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2010-04-03 13:25:37 +0200 |
commit | ba57ffc48d3a97421c8358947bc8cf9f2e7ff7c6 (patch) | |
tree | fdc23b19a491d255cdf8f755e999d1b191280628 | |
parent | abcaad6b65ed368c13c353ed71619332f76d9c2a (diff) | |
download | libmnl-ba57ffc48d3a97421c8358947bc8cf9f2e7ff7c6.tar.gz libmnl-ba57ffc48d3a97421c8358947bc8cf9f2e7ff7c6.zip |
revert abcaad6b65ed368c13c353ed71619332f76d9c2a
it's deeply broken 8-)
-rw-r--r-- | examples/genl-family-get.c | 4 | ||||
-rw-r--r-- | examples/rtnl-link-dump.c | 4 | ||||
-rw-r--r-- | examples/rtnl-link-event.c | 4 | ||||
-rw-r--r-- | examples/rtnl-route-dump.c | 4 |
4 files changed, 0 insertions, 16 deletions
diff --git a/examples/genl-family-get.c b/examples/genl-family-get.c index e6033af..3e741cb 100644 --- a/examples/genl-family-get.c +++ b/examples/genl-family-get.c @@ -51,10 +51,6 @@ static int data_cb(const struct nlmsghdr *nlh, void *data) struct nlattr *tb[CTRL_ATTR_MAX+1]; struct genlmsghdr *genl = mnl_nlmsg_get_data(nlh); - /* this does not come from the kernel. */ - if (nlh->nlmsg_pid != 0) - return MNL_CB_OK; - mnl_attr_parse_at_offset(nlh, sizeof(*genl), tb, CTRL_ATTR_MAX); if (tb[CTRL_ATTR_FAMILY_NAME]) { printf("name=%s\t", diff --git a/examples/rtnl-link-dump.c b/examples/rtnl-link-dump.c index cc3fdf7..7cf061d 100644 --- a/examples/rtnl-link-dump.c +++ b/examples/rtnl-link-dump.c @@ -14,10 +14,6 @@ static int data_cb(const struct nlmsghdr *nlh, void *data) int len = mnl_nlmsg_get_len(nlh); struct nlattr *attr; - /* this does not come from the kernel. */ - if (nlh->nlmsg_pid != 0) - return MNL_CB_OK; - printf("index=%d type=%d flags=%d family=%d ", ifm->ifi_index, ifm->ifi_type, ifm->ifi_flags, ifm->ifi_family); diff --git a/examples/rtnl-link-event.c b/examples/rtnl-link-event.c index 3cff82d..ed5a577 100644 --- a/examples/rtnl-link-event.c +++ b/examples/rtnl-link-event.c @@ -14,10 +14,6 @@ static int data_cb(const struct nlmsghdr *nlh, void *data) int len = mnl_nlmsg_get_len(nlh); struct nlattr *attr; - /* this does not come from the kernel. */ - if (nlh->nlmsg_pid != 0) - return MNL_CB_OK; - printf("index=%d type=%d flags=%d family=%d ", ifm->ifi_index, ifm->ifi_type, ifm->ifi_flags, ifm->ifi_family); diff --git a/examples/rtnl-route-dump.c b/examples/rtnl-route-dump.c index 131d344..e8f3a0c 100644 --- a/examples/rtnl-route-dump.c +++ b/examples/rtnl-route-dump.c @@ -55,10 +55,6 @@ static int data_cb(const struct nlmsghdr *nlh, void *data) int len = mnl_nlmsg_get_len(nlh); struct nlattr *attr; - /* this does not come from the kernel. */ - if (nlh->nlmsg_pid != 0) - return MNL_CB_OK; - /* protocol family = AF_INET | AF_INET6 */ printf("family=%u ", rm->rtm_family); |