diff options
author | Michael Banck <mbanck@debian.org> | 2006-04-27 15:19:26 +0000 |
---|---|---|
committer | Michael Banck <mbanck@debian.org> | 2006-04-27 15:19:26 +0000 |
commit | 20734128969fba8432bc56144560e94e102c1858 (patch) | |
tree | 53500db28abe6a7438599d48ad3e6cd1186284a8 /debian | |
parent | 46a2307e0f6a89e2c89648aa07232294efa51403 (diff) |
* debian/patches/pfinet_packet_filter: New patch, adding support for
gathering incoming packets, taken from CVS.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/patches/pfinet_packet_filter.diff | 19 |
2 files changed, 21 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 13d8cf0e..e60ba8f8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ hurd (20050513-7+SVN) unreleased; urgency=low - * + * debian/patches/pfinet_packet_filter: New patch, adding support for + gathering incoming packets, taken from CVS. -- Michael Banck <mbanck@debian.org> Thu, 27 Apr 2006 12:17:47 +0200 diff --git a/debian/patches/pfinet_packet_filter.diff b/debian/patches/pfinet_packet_filter.diff new file mode 100644 index 00000000..ec883f44 --- /dev/null +++ b/debian/patches/pfinet_packet_filter.diff @@ -0,0 +1,19 @@ +=================================================================== +RCS file: /var/lib/cvs/sources/hurd/hurd/pfinet/ethernet.c,v +retrieving revision 1.29 +retrieving revision 1.30 +diff -u -r1.29 -r1.30 +--- hurd/hurd/pfinet/ethernet.c 2002/05/29 08:34:35 1.29 ++++ hurd/hurd/pfinet/ethernet.c 2006/04/27 00:10:51 1.30 +@@ -68,6 +68,11 @@ + + static short ether_filter[] = + { ++#ifdef NETF_IN ++ /* We have to tell the packet filtering code that we're interested in ++ incoming packets. */ ++ NETF_IN, /* Header. */ ++#endif + NETF_PUSHLIT | NETF_NOP, + 1 + }; |