]> git.proxmox.com Git - mirror_iproute2.git/blame - ip/iplink_nlmon.c
ll_map: Add function to remove link cache entry by index
[mirror_iproute2.git] / ip / iplink_nlmon.c
CommitLineData
6054c1eb 1/* SPDX-License-Identifier: GPL-2.0 */
9fd7b86c
PS
2#include <stdio.h>
3#include <stdlib.h>
4
5#include "utils.h"
6#include "ip_common.h"
7
8static void nlmon_print_help(struct link_util *lu,
9 int argc, char **argv, FILE *f)
10{
11 fprintf(f, "Usage: ... nlmon\n");
12}
13
14struct link_util nlmon_link_util = {
15 .id = "nlmon",
16 .print_help = nlmon_print_help,
17};