]> git.proxmox.com Git - mirror_iproute2.git/blame - genl/genl_utils.h
vdpa: add .gitignore
[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
06897857 5#include <linux/genetlink.h>
8cd09e61 6#include "utils.h"
65018ae4 7
06897857 8struct genl_util {
65018ae4
JHS
9 struct genl_util *next;
10 char name[16];
11 int (*parse_genlopt)(struct genl_util *fu, int argc, char **argv);
cd554f2c 12 int (*print_genlopt)(struct nlmsghdr *n, void *arg);
65018ae4
JHS
13};
14
65018ae4 15#endif