summaryrefslogtreecommitdiff
path: root/src/network/networkd-route.c
diff options
context:
space:
mode:
authorSusant Sahani <susant@redhat.com>2014-07-10 23:09:58 +0530
committerTom Gundersen <teg@jklm.no>2014-07-14 11:39:20 +0200
commit5d8e593dce074bff966fc0a46579c61b4f3bc33a (patch)
tree6e43e5a00d743b152da56080011f8333453325d4 /src/network/networkd-route.c
parent5bdd314cd9954b605542571490738326f007c46c (diff)
networkd: make metric of routes configurable
Now route metric can be configuted via conf file: example conf: [Match] Name=em1 [Route] Gateway=192.168.1.12 Metric=10 Test: ip route output default via 192.168.1.12 dev em1 metric 10 [tomegun: squash TODO update and reword man page a bit]
Diffstat (limited to 'src/network/networkd-route.c')
-rw-r--r--src/network/networkd-route.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c
index acfe3f023f..9e6295f8c8 100644
--- a/src/network/networkd-route.c
+++ b/src/network/networkd-route.c
@@ -360,3 +360,39 @@ int config_parse_destination(const char *unit,
return 0;
}
+
+int config_parse_route_priority(const char *unit,
+ const char *filename,
+ unsigned line,
+ const char *section,
+ unsigned section_line,
+ const char *lvalue,
+ int ltype,
+ const char *rvalue,
+ void *data,
+ void *userdata) {
+ Network *network = userdata;
+ _cleanup_route_free_ Route *n = NULL;
+ _cleanup_free_ char *route = NULL;
+ int r;
+
+ assert(filename);
+ assert(section);
+ assert(lvalue);
+ assert(rvalue);
+ assert(data);
+
+ r = route_new_static(network, section_line, &n);
+ if (r < 0)
+ return r;
+
+ r = config_parse_unsigned(unit, filename, line, section,
+ section_line, lvalue, ltype,
+ rvalue, &n->metrics, userdata);
+ if (r < 0)
+ return r;
+
+ n = NULL;
+
+ return 0;
+}