|
@@ -40,6 +40,7 @@
|
|
#include "bearer.h"
|
|
#include "bearer.h"
|
|
#include "link.h"
|
|
#include "link.h"
|
|
#include "node.h"
|
|
#include "node.h"
|
|
|
|
+#include "net.h"
|
|
#include <net/genetlink.h>
|
|
#include <net/genetlink.h>
|
|
|
|
|
|
static int handle_cmd(struct sk_buff *skb, struct genl_info *info)
|
|
static int handle_cmd(struct sk_buff *skb, struct genl_info *info)
|
|
@@ -79,7 +80,8 @@ static const struct nla_policy tipc_nl_policy[TIPC_NLA_MAX + 1] = {
|
|
[TIPC_NLA_PUBL] = { .type = NLA_NESTED, },
|
|
[TIPC_NLA_PUBL] = { .type = NLA_NESTED, },
|
|
[TIPC_NLA_LINK] = { .type = NLA_NESTED, },
|
|
[TIPC_NLA_LINK] = { .type = NLA_NESTED, },
|
|
[TIPC_NLA_MEDIA] = { .type = NLA_NESTED, },
|
|
[TIPC_NLA_MEDIA] = { .type = NLA_NESTED, },
|
|
- [TIPC_NLA_NODE] = { .type = NLA_NESTED, }
|
|
|
|
|
|
+ [TIPC_NLA_NODE] = { .type = NLA_NESTED, },
|
|
|
|
+ [TIPC_NLA_NET] = { .type = NLA_NESTED, }
|
|
};
|
|
};
|
|
|
|
|
|
/* Legacy ASCII API */
|
|
/* Legacy ASCII API */
|
|
@@ -173,6 +175,11 @@ static const struct genl_ops tipc_genl_v2_ops[] = {
|
|
.cmd = TIPC_NL_NODE_GET,
|
|
.cmd = TIPC_NL_NODE_GET,
|
|
.dumpit = tipc_nl_node_dump,
|
|
.dumpit = tipc_nl_node_dump,
|
|
.policy = tipc_nl_policy,
|
|
.policy = tipc_nl_policy,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ .cmd = TIPC_NL_NET_GET,
|
|
|
|
+ .dumpit = tipc_nl_net_dump,
|
|
|
|
+ .policy = tipc_nl_policy,
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
|