summaryrefslogtreecommitdiffstats
path: root/src/if-bsd.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2020-06-02 17:07:12 +0100
committerRoy Marples <roy@marples.name>2020-06-02 17:07:12 +0100
commitd3de73d80c7f307bab0278162ff81c3731ac2ce7 (patch)
tree59dea4f616c97e7b84ca3348cc5dc665b7cd49aa /src/if-bsd.c
parent828e858d3d7bbdb82bec7cd56616795426861783 (diff)
downloaddhcpcd-d3de73d80c7f307bab0278162ff81c3731ac2ce7.tar.xz
BSD: Ignore fwip(4)
Diffstat (limited to 'src/if-bsd.c')
-rw-r--r--src/if-bsd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/if-bsd.c b/src/if-bsd.c
index 7bc1d732..78735c7b 100644
--- a/src/if-bsd.c
+++ b/src/if-bsd.c
@@ -100,10 +100,12 @@
#define RT_ADVANCE(x, n) (x += RT_ROUNDUP((n)->sa_len))
#endif
-/* Ignore these interface names which look like ethernet but are virtual. */
+/* Ignore these interface names which look like ethernet but are virtual or
+ * just won't work without explicit configuration. */
static const char * const ifnames_ignore[] = {
"bridge",
"fwe", /* Firewire */
+ "fwip", /* Firewire */
"tap",
"xvif", /* XEN DOM0 -> guest interface */
NULL