]> git.proxmox.com Git - mirror_iproute2.git/blob - genl/genl_utils.h
devlink: Add devlink-health man page
[mirror_iproute2.git] / genl / genl_utils.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _TC_UTIL_H_
3 #define _TC_UTIL_H_ 1
4
5 #include "utils.h"
6 #include "linux/genetlink.h"
7
8 struct genl_util
9 {
10 struct genl_util *next;
11 char name[16];
12 int (*parse_genlopt)(struct genl_util *fu, int argc, char **argv);
13 int (*print_genlopt)(struct nlmsghdr *n, void *arg);
14 };
15
16 #endif