diff options
author | Tom Gundersen <teg@jklm.no> | 2013-11-24 23:37:56 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2013-11-26 01:32:25 +0100 |
commit | 02b59d57e0c08231645120077f651151f5bb2bab (patch) | |
tree | 10549c36b26f6fda4daf7b9d11c994adfc6a88ff /src/network/networkd-gperf.gperf | |
parent | c166a070553511e402de5ad216d3fb62b49bdacb (diff) |
networkd: add bridge support
A bridge is specified in a .netdev file with a section [Bridge]
and at least the entry Name=.
A link may be joined to a bridge if the .network applied to it has
a Bridge= entry giving the name of the bridge in its [Network] section.
We eagerly create all bridges on startup, and links are added to
bridges as soon as they both appear.
Diffstat (limited to 'src/network/networkd-gperf.gperf')
-rw-r--r-- | src/network/networkd-gperf.gperf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/network/networkd-gperf.gperf b/src/network/networkd-gperf.gperf index 7fbe4669ac..385f1bb856 100644 --- a/src/network/networkd-gperf.gperf +++ b/src/network/networkd-gperf.gperf @@ -21,7 +21,10 @@ Match.Driver, config_parse_string, 0, offsetof(Networ Match.Type, config_parse_string, 0, offsetof(Network, match_type) Match.Name, config_parse_ifname, 0, offsetof(Network, match_name) Network.Description, config_parse_string, 0, offsetof(Network, description) +Network.Bridge, config_parse_bridge, 0, offsetof(Network, bridge) Network.Address, config_parse_address, 0, 0 Network.Gateway, config_parse_gateway, 0, 0 Address.Address, config_parse_address, 0, 0 Address.Label, config_parse_label, 0, 0 +Bridge.Description, config_parse_string, 0, offsetof(Bridge, description) +Bridge.Name, config_parse_ifname, 0, offsetof(Bridge, name) |