* [PATCH] ipp2p 0.6.1-2
@ 2004-09-10 11:10 Eicke Friedrich
2004-09-12 22:30 ` Patrick McHardy
0 siblings, 1 reply; 2+ messages in thread
From: Eicke Friedrich @ 2004-09-10 11:10 UTC (permalink / raw)
To: netfilter-devel
[-- Attachment #1: Type: text/plain, Size: 183 bytes --]
Hi again,
another patch for ipp2p. It covers a case that occured after the first
patch was send to the list. Please apply on top of the first patch.
Sorry for that.
Regards,
Eicke.
[-- Attachment #2: ipp2p-0.6.1-2.diff --]
[-- Type: text/plain, Size: 1598 bytes --]
diff -Nru patch-o-matic-ng-new/ipp2p/linux/net/ipv4/netfilter/ipt_ipp2p.c patch-o-matic-ng-061/ipp2p/linux/net/ipv4/netfilter/ipt_ipp2p.c
--- patch-o-matic-ng-new/ipp2p/linux/net/ipv4/netfilter/ipt_ipp2p.c 2004-09-10 11:01:56.511534576 +0200
+++ patch-o-matic-ng-061/ipp2p/linux/net/ipv4/netfilter/ipt_ipp2p.c 2004-09-10 12:35:36.131222528 +0200
@@ -44,9 +44,10 @@
t += head_len;
if (((packet_len - head_len) == 4) && (memcmp(t, "SEND", 4) == 0)) return 1;
+ if (((packet_len - head_len) == 3) && (memcmp(t, "GET", 3) == 0)) return 1;
if (packet_len < (head_len + 10)) return 0;
- if (memcmp(t, "SEND", 4) == 0){
+ if ((memcmp(t, "SEND", 4) == 0) || (memcmp(t, "GET", 3) == 0)){
c = head_len + 4;
t += 4;
while (c < packet_len - 5) {
diff -Nru patch-o-matic-ng-new/ipp2p/linux-2.6/net/ipv4/netfilter/ipt_ipp2p.c patch-o-matic-ng-061/ipp2p/linux-2.6/net/ipv4/netfilter/ipt_ipp2p.c
--- patch-o-matic-ng-new/ipp2p/linux-2.6/net/ipv4/netfilter/ipt_ipp2p.c 2004-09-10 11:02:17.171393800 +0200
+++ patch-o-matic-ng-061/ipp2p/linux-2.6/net/ipv4/netfilter/ipt_ipp2p.c 2004-09-10 12:35:55.591264152 +0200
@@ -41,9 +41,10 @@
t += head_len;
if (((packet_len - head_len) == 4) && (memcmp(t, "SEND", 4) == 0)) return 1;
+ if (((packet_len - head_len) == 3) && (memcmp(t, "GET", 3) == 0)) return 1;
if (packet_len < (head_len + 10)) return 0;
- if (memcmp(t, "SEND", 4) == 0){
+ if ((memcmp(t, "SEND", 4) == 0) || (memcmp(t, "GET", 3) == 0)){
c = head_len + 4;
t += 4;
while (c < packet_len - 5) {
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ipp2p 0.6.1-2
2004-09-10 11:10 [PATCH] ipp2p 0.6.1-2 Eicke Friedrich
@ 2004-09-12 22:30 ` Patrick McHardy
0 siblings, 0 replies; 2+ messages in thread
From: Patrick McHardy @ 2004-09-12 22:30 UTC (permalink / raw)
To: Eicke Friedrich; +Cc: netfilter-devel
Eicke Friedrich wrote:
> Hi again,
>
> another patch for ipp2p. It covers a case that occured after the first
> patch was send to the list. Please apply on top of the first patch.
> Sorry for that.
Also applied.
Regards
Patrick
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-09-12 22:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-10 11:10 [PATCH] ipp2p 0.6.1-2 Eicke Friedrich
2004-09-12 22:30 ` Patrick McHardy
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.