diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-01-13 20:41:19 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-01-13 20:41:19 +0000 |
commit | 8075c5bed6442cc2fd4150a0589a102ed9380b8b (patch) | |
tree | ce058b2d71ad6e9129766df8676764b16748dbc9 /security/pf/files/patch-ad | |
parent | - Update to 1.6.1 (diff) |
- Update to 2.02
* Fix severe byte order related problem with "route-to" rules
(much help from Joris Vandalon with testing here)
* Make tcpdump's -w flag work for if_pfsync
* Fix byte order and drop lock for icmp_error() calls.
(note that it is necessary to allow icmp_error messages - from
"block-policy return" - as FreeBSD does not know about pf's
special tags, yet).
- update ALTQ-message to point to the new 5.2R-patchset from rofug.ro
as well
PR: ports/61318
Submitted by: Max Laier <max@love2party.net> (maintainer)
Diffstat (limited to 'security/pf/files/patch-ad')
-rw-r--r-- | security/pf/files/patch-ad | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/security/pf/files/patch-ad b/security/pf/files/patch-ad deleted file mode 100644 index 8473380dac8e..000000000000 --- a/security/pf/files/patch-ad +++ /dev/null @@ -1,23 +0,0 @@ ---- freebsd_libpcap/savefile.c.orig Fri Nov 21 14:35:34 2003 -+++ freebsd_libpcap/savefile.c Fri Nov 21 14:35:46 2003 -@@ -178,6 +178,9 @@ - #define LINKTYPE_HDLC 112 /* NetBSD HDLC framing */ - #define LINKTYPE_IPFILTER 116 /* IP Filter capture files */ - #define LINKTYPE_PFLOG 117 /* OpenBSD DLT_PFLOG */ -+#if defined(DLT_PFSYNC) -+#define LINKTYPE_PFSYNC DLT_PFSYNC -+#endif - - static struct linktype_map { - int dlt; -@@ -271,6 +274,10 @@ - * defining DLT_* values that collide with those - * LINKTYPE_* values, either). - */ -+ { DLT_PFLOG, LINKTYPE_PFLOG }, -+#if defined(DLT_PFSYNC) -+ { DLT_PFSYNC, LINKTYPE_PFSYNC }, -+#endif - { -1, -1 } - }; - |