• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 #include <stdlib.h>
3 
4 #include "utils.h"
5 #include "ip_common.h"
6 
nlmon_print_help(struct link_util * lu,int argc,char ** argv,FILE * f)7 static void nlmon_print_help(struct link_util *lu,
8 			    int argc, char **argv, FILE *f)
9 {
10 	fprintf(f, "Usage: ... nlmon\n");
11 }
12 
13 struct link_util nlmon_link_util = {
14 	.id		= "nlmon",
15 	.print_help	= nlmon_print_help,
16 };
17