face: Fixing compilation failure with libpcap version 1.0.0

Change-Id: If285f1ed11a4e66bdafb50cbb7314faaed3d95f7
Refs: #1703
diff --git a/daemon/face/ethernet-face.cpp b/daemon/face/ethernet-face.cpp
index 27f34ee..9e34c66 100644
--- a/daemon/face/ethernet-face.cpp
+++ b/daemon/face/ethernet-face.cpp
@@ -37,6 +37,14 @@
 #include <sys/ioctl.h>    // for ioctl()
 #include <unistd.h>       // for dup()
 
+#if !defined(PCAP_NETMASK_UNKNOWN)
+/*
+ * Value to pass to pcap_compile() as the netmask if you don't know what
+ * the netmask is.
+ */
+#define PCAP_NETMASK_UNKNOWN    0xffffffff
+#endif
+
 namespace nfd {
 
 NFD_LOG_INIT("EthernetFace");