iPXE
|
00001 /* 00002 * Copyright (C) 2014 Michael Brown <mbrown@fensystems.co.uk>. 00003 * 00004 * This program is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU General Public License as 00006 * published by the Free Software Foundation; either version 2 of the 00007 * License, or any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, but 00010 * WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00017 * 02110-1301, USA. 00018 * 00019 * You can also choose to distribute this program under the terms of 00020 * the Unmodified Binary Distribution Licence (as given in the file 00021 * COPYING.UBDL), provided that you have satisfied its requirements. 00022 */ 00023 00024 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); 00025 00026 #include <stdio.h> 00027 #include <getopt.h> 00028 #include <ipxe/command.h> 00029 #include <ipxe/parseopt.h> 00030 #include <usr/ipstat.h> 00031 00032 /** @file 00033 * 00034 * IP statistics commands 00035 * 00036 */ 00037 00038 /** "ipstat" options */ 00039 struct ipstat_options {}; 00040 00041 /** "ipstat" option list */ 00042 static struct option_descriptor ipstat_opts[] = {}; 00043 00044 /** "ipstat" command descriptor */ 00045 static struct command_descriptor ipstat_cmd = 00046 COMMAND_DESC ( struct ipstat_options, ipstat_opts, 0, 0, NULL ); 00047 00048 /** 00049 * The "ipstat" command 00050 * 00051 * @v argc Argument count 00052 * @v argv Argument list 00053 * @ret rc Return status code 00054 */ 00055 static int ipstat_exec ( int argc, char **argv ) { 00056 struct ipstat_options opts; 00057 int rc; 00058 00059 /* Parse options */ 00060 if ( ( rc = parse_options ( argc, argv, &ipstat_cmd, &opts ) ) != 0 ) 00061 return rc; 00062 00063 ipstat(); 00064 00065 return 0; 00066 } 00067 00068 /** Routing table management commands */ 00069 struct command ipstat_commands[] __command = { 00070 { 00071 .name = "ipstat", 00072 .exec = ipstat_exec, 00073 }, 00074 };