]> git.proxmox.com Git - mirror_iproute2.git/blob - genl/genl_utils.h
ss: mptcp: fix add_addr_accepted stat print
[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 <linux/genetlink.h>
6 #include "utils.h"
7
8 struct genl_util {
9 struct genl_util *next;
10 char name[16];
11 int (*parse_genlopt)(struct genl_util *fu, int argc, char **argv);
12 int (*print_genlopt)(struct nlmsghdr *n, void *arg);
13 };
14
15 #endif