networkd: Add VRF.Table to support parsing of table names

Previously there was only `VRF.TableId` which only supported numeric
identifiers for routing table. With the additiona of
`config_parse_route_table` also names can be used as identifiers.
This commit is contained in:
Andreas Rammhold 2017-08-31 01:11:16 +02:00
parent e9ea4526a3
commit f98dd1e707

View file

@ -134,3 +134,4 @@ Bridge.MulticastSnooping, config_parse_tristate, 0,
Bridge.VLANFiltering, config_parse_tristate, 0, offsetof(Bridge, vlan_filtering)
Bridge.STP, config_parse_tristate, 0, offsetof(Bridge, stp)
VRF.TableId, config_parse_uint32, 0, offsetof(Vrf, table_id)
VRF.Table, config_parse_route_table, 0, offsetof(Vrf, table_id)