]> The Tcpdump Group git mirrors - tcpdump/blobdiff - pflog.h
Makefile.in: don't remove configure and config.h.in in make distclean.
[tcpdump] / pflog.h
diff --git a/pflog.h b/pflog.h
index 0d3f899b8eecbfe4191bf6a4278c16c9a698ca83..a629ebabf3c180ac59e9030f4fcc6e6fdc25dd39 100644 (file)
--- a/pflog.h
+++ b/pflog.h
@@ -77,7 +77,7 @@
 #endif
 
 /*
- * Action vaues.
+ * Action values.
  */
 #define PF_PASS                        0
 #define PF_DROP                        1
 
 struct pf_addr {
        union {
-               struct in_addr          v4;
-               struct in6_addr         v6;
-               uint8_t                 addr8[16];
-               uint16_t                addr16[8];
-               uint32_t                addr32[4];
+               nd_ipv4         v4;
+               nd_ipv6         v6;
        } pfa;              /* 128-bit address */
 #define v4     pfa.v4
 #define v6     pfa.v6
-#define addr8  pfa.addr8
-#define addr16 pfa.addr16
-#define addr32 pfa.addr32
 };
 
 struct pfloghdr {