diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-04-13 20:40:39 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-04-13 20:40:39 +0000 |
commit | 40ac3d7ac1cb29bf5d482e162c102c56a5e2e5e6 (patch) | |
tree | fb5ea6dc09883fcbc031da30ce5544ddd9a41822 /init.c | |
parent | Version number increment. (diff) | |
download | openvpn-40ac3d7ac1cb29bf5d482e162c102c56a5e2e5e6.tar.xz |
Added --route-metric option to set a default route metric
for --route (Roy Marples).
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1011 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -634,15 +634,19 @@ do_init_route_list (const struct options *options, { const char *gw = NULL; int dev = dev_type_enum (options->dev, options->dev_type); + int metric = 0; if (dev == DEV_TYPE_TUN && (options->topology == TOP_NET30 || options->topology == TOP_P2P)) gw = options->ifconfig_remote_netmask; if (options->route_default_gateway) gw = options->route_default_gateway; + if (options->route_default_metric) + metric = options->route_default_metric; if (!init_route_list (route_list, options->routes, gw, + metric, link_socket_current_remote (link_socket_info), es)) { |