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