Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 194927
b: refs/heads/master
c: 7911b5c
h: refs/heads/master
i:
  194925: a746136
  194923: a1926f5
  194919: 1620283
  194911: efcfc0b
v: v3
  • Loading branch information
Jan Engelhardt committed Mar 25, 2010
1 parent 7cc00ee commit a7729db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5d877d876cfb96c0c3254184171b4767501f4f95
refs/heads/master: 7911b5c75b613f533b6cb6f999041dd5ea3bb004
16 changes: 8 additions & 8 deletions trunk/net/netfilter/ipvs/ip_vs_xmit.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET, skb, rt);
IP_VS_XMIT(NFPROTO_IPV4, skb, rt);

LeaveFunction(10);
return NF_STOLEN;
Expand Down Expand Up @@ -333,7 +333,7 @@ ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET6, skb, rt);
IP_VS_XMIT(NFPROTO_IPV6, skb, rt);

LeaveFunction(10);
return NF_STOLEN;
Expand Down Expand Up @@ -409,7 +409,7 @@ ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET, skb, rt);
IP_VS_XMIT(NFPROTO_IPV4, skb, rt);

LeaveFunction(10);
return NF_STOLEN;
Expand Down Expand Up @@ -485,7 +485,7 @@ ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET6, skb, rt);
IP_VS_XMIT(NFPROTO_IPV6, skb, rt);

LeaveFunction(10);
return NF_STOLEN;
Expand Down Expand Up @@ -784,7 +784,7 @@ ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET, skb, rt);
IP_VS_XMIT(NFPROTO_IPV4, skb, rt);

LeaveFunction(10);
return NF_STOLEN;
Expand Down Expand Up @@ -837,7 +837,7 @@ ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET6, skb, rt);
IP_VS_XMIT(NFPROTO_IPV6, skb, rt);

LeaveFunction(10);
return NF_STOLEN;
Expand Down Expand Up @@ -911,7 +911,7 @@ ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET, skb, rt);
IP_VS_XMIT(NFPROTO_IPV4, skb, rt);

rc = NF_STOLEN;
goto out;
Expand Down Expand Up @@ -986,7 +986,7 @@ ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
/* Another hack: avoid icmp_send in ip_fragment */
skb->local_df = 1;

IP_VS_XMIT(PF_INET6, skb, rt);
IP_VS_XMIT(NFPROTO_IPV6, skb, rt);

rc = NF_STOLEN;
goto out;
Expand Down

0 comments on commit a7729db

Please sign in to comment.