commit | ef968e15d5a277cbae7cd7f4cadaed9ba7cb4767 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Thu Feb 27 15:17:50 2014 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Thu Feb 27 21:25:33 2014 -0800 |
tree | 5bbfde6ddec7423357641e7ee437c1f49bc3c338 | |
parent | d9ee45c952289b92e37569d25e8fbcb6b2d03949 [diff] |
face: Ignoring fireware interfaces (fw*) in EthernetChannelFactory Change-Id: Ibfb512ce1229e74eee4c66efd87d6dc4a18c057e
diff --git a/daemon/face/ethernet-channel-factory.cpp b/daemon/face/ethernet-channel-factory.cpp index 4c47f85..86ad1a5 100644 --- a/daemon/face/ethernet-channel-factory.cpp +++ b/daemon/face/ethernet-channel-factory.cpp
@@ -70,6 +70,9 @@ boost::starts_with(interface, "nfqueue")) // ignore Linux netfilter devices continue; + if (boost::starts_with(interface, "fw")) + // ignore OSX firewire interface + continue; // maybe add interface addresses too // interface.addAddress ...