diff options
author | Julian Anastasov <ja@ssi.bg> | 2011-12-30 14:19:02 +0900 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2011-12-31 16:06:29 +0100 |
commit | 52793dbe3d60bd73bbebe28b2bfc9f6b4b920d4c (patch) | |
tree | 845ae88e96de3b28884bab1e868e00ba4687fd02 /include | |
parent | fe3c8cc9226c7487c053edad9229dc85e93534d7 (diff) | |
download | linux-3.10-52793dbe3d60bd73bbebe28b2bfc9f6b4b920d4c.tar.gz linux-3.10-52793dbe3d60bd73bbebe28b2bfc9f6b4b920d4c.tar.bz2 linux-3.10-52793dbe3d60bd73bbebe28b2bfc9f6b4b920d4c.zip |
ipvs: try also real server with port 0 in backup server
We should not forget to try for real server with port 0
in the backup server when processing the sync message. We should
do it in all cases because the backup server can use different
forwarding method.
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ip_vs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index 873d5be7926..e5a7b9aaf55 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h @@ -1207,7 +1207,7 @@ extern void ip_vs_control_cleanup(void); extern struct ip_vs_dest * ip_vs_find_dest(struct net *net, int af, const union nf_inet_addr *daddr, __be16 dport, const union nf_inet_addr *vaddr, __be16 vport, - __u16 protocol, __u32 fwmark); + __u16 protocol, __u32 fwmark, __u32 flags); extern struct ip_vs_dest *ip_vs_try_bind_dest(struct ip_vs_conn *cp); |