Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / hci / commands / route_cmd.c
1 /*
2  * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  */
19
20 FILE_LICENCE ( GPL2_OR_LATER );
21
22 #include <stdio.h>
23 #include <getopt.h>
24 #include <ipxe/command.h>
25 #include <ipxe/parseopt.h>
26 #include <usr/route.h>
27
28 /** @file
29  *
30  * Routing table management commands
31  *
32  */
33
34 /** "route" options */
35 struct route_options {};
36
37 /** "route" option list */
38 static struct option_descriptor route_opts[] = {};
39
40 /** "route" command descriptor */
41 static struct command_descriptor route_cmd =
42         COMMAND_DESC ( struct route_options, route_opts, 0, 0, NULL );
43
44 /**
45  * The "route" command
46  *
47  * @v argc              Argument count
48  * @v argv              Argument list
49  * @ret rc              Return status code
50  */
51 static int route_exec ( int argc, char **argv ) {
52         struct route_options opts;
53         int rc;
54
55         /* Parse options */
56         if ( ( rc = parse_options ( argc, argv, &route_cmd, &opts ) ) != 0 )
57                 return rc;
58
59         route();
60
61         return 0;
62 }
63
64 /** Routing table management commands */
65 struct command route_commands[] __command = {
66         {
67                 .name = "route",
68                 .exec = route_exec,
69         },
70 };