iproute2/genl/genl_utils.h
<<
>>
Prefs
   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
   8struct 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
  16