From: Amos Jeffries Date: Sat, 19 Sep 2009 08:20:12 +0000 (+1200) Subject: Correct docs on NAT X-Git-Tag: SQUID_3_2_0_1~706 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b9420956478d7790140537f37a41aab18a73f6c3;p=thirdparty%2Fsquid.git Correct docs on NAT --- diff --git a/src/ip/IpIntercept.cc b/src/ip/IpIntercept.cc index 604faa010d..e54eb08143 100644 --- a/src/ip/IpIntercept.cc +++ b/src/ip/IpIntercept.cc @@ -385,7 +385,7 @@ IpIntercept::NatLookup(int fd, const IpAddress &me, const IpAddress &peer, IpAdd if ( NetfilterTransparent(fd, me, dst, silent) == 0) return 0; } - /* NAT is only available in IPv6 */ + /* NAT is only available in IPv4 */ if ( !me.IsIPv4() ) return -1; if ( !peer.IsIPv4() ) return -1;