diff options
author | Alin Rauta <alin.rauta@intel.com> | 2015-02-17 04:06:57 -0800 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-02-27 13:58:30 -0500 |
commit | 0d4ad91dd4fc831c31a9775b0eadf97fea6cd7f6 (patch) | |
tree | ae6009e73a82ac399632f1e56d0c9d5f5fcf857a /src/network/networkd-network.c | |
parent | 2bdbf32183fc6816cf34f4850e9fc5f070a34303 (diff) |
networkd: add support for Uplink Failure Detection
Introduce BindCarrier= to indicate the set of links that determine if
the current link should be brought UP or DOWN.
[tomegun: add a bit to commit message]
Diffstat (limited to 'src/network/networkd-network.c')
-rw-r--r-- | src/network/networkd-network.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/networkd-network.c b/src/network/networkd-network.c index c6cf00a5e5..0ba0c75714 100644 --- a/src/network/networkd-network.c +++ b/src/network/networkd-network.c @@ -208,6 +208,7 @@ void network_free(Network *network) { strv_free(network->ntp); strv_free(network->dns); strv_free(network->domains); + strv_free(network->bind_carrier); netdev_unref(network->bridge); |