Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / config / config_route.c
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License as
4  * published by the Free Software Foundation; either version 2, or (at
5  * your option) any later version.
6  */
7
8 FILE_LICENCE ( GPL2_OR_LATER );
9
10 #include <config/general.h>
11
12 /** @file
13  *
14  * Routing management configuration options
15  *
16  */
17
18 /*
19  * Drag in routing management for relevant protocols
20  *
21  */
22 #ifdef NET_PROTO_IPV4
23 REQUIRE_OBJECT ( route_ipv4 );
24 #endif
25 #ifdef NET_PROTO_IPV6
26 REQUIRE_OBJECT ( route_ipv6 );
27 #endif