Re: squid3-ipv6 squid3/src ACLIP.cc,1.8.2.45,1.8.2.46

2007-09-27 Thread Amos Jeffries
> On fre, 2007-09-28 at 09:01 +1200, Amos Jeffries wrote: > >> No, IPAddress can be assigned a string. It will try to do an >> inet_a/pton() >> conversion. It returns true/false depending on whether the string was >> able >> to be converted. > > Then please use double (). > > if ((mask = asc)) > o

Re: squid3-ipv6 squid3/src ACLIP.cc,1.8.2.45,1.8.2.46

2007-09-27 Thread Henrik Nordstrom
On fre, 2007-09-28 at 09:01 +1200, Amos Jeffries wrote: > No, IPAddress can be assigned a string. It will try to do an inet_a/pton() > conversion. It returns true/false depending on whether the string was able > to be converted. Then please use double (). if ((mask = asc)) Regards Henrik sig

Re: squid3-ipv6 squid3/src ACLIP.cc,1.8.2.45,1.8.2.46

2007-09-27 Thread Amos Jeffries
> Both look strange to me. Shouldn't that be an == > No, IPAddress can be assigned a string. It will try to do an inet_a/pton() conversion. It returns true/false depending on whether the string was able to be converted. I'll add a note to clean it up. > > On tor, 2007-09-27 at 11:28 +0200, Rafae

Re: Squid3 with multiple ICAP Services

2007-09-27 Thread Alex Rousskov
On Thu, 2007-09-27 at 12:08 +1200, Amos Jeffries wrote: > icap_class even says "If there are multiple services per vectoring > point, they are processed in the specified order." Not any more. We now also warn if multiple services are configured per class. Despite the warning, we still allow a ser

self intro

2007-09-27 Thread Achmad Husni Thamrin
Hi there, I'm Husni, an Indonesian living in Japan. I've been working on IPv6 for Squid 2.6. The latest patch is for 2.6.STABLE13 http://jaringan.info/2007/05/12/squid-ipv6-26stable13/ That's all for now. Yoroshiku onegaishimasu. -- husni http://jaringan.info http://www.flickr.com/photos/husni/

Re: Squid3 with multiple ICAP Services

2007-09-27 Thread Henrik Nordstrom
On tor, 2007-09-27 at 12:08 +1200, Amos Jeffries wrote: > icap_class even says "If there are multiple services per vectoring point, > they are processed in the specified order." Yes.. config syntax already supports it, just never gets called.. Regards Henrik signature.asc Description: This is

Re: squid3-ipv6 squid3/src ACLIP.cc,1.8.2.45,1.8.2.46

2007-09-27 Thread Henrik Nordstrom
Both look strange to me. Shouldn't that be an == Regards Henrik On tor, 2007-09-27 at 11:28 +0200, Rafael Martinez (Squid development) wrote: > Amos, a little typo: > > Acording to original semantics of safe_inet_addr, I think the conditioal > expresion must be positive > > SHOULD BE : > > >

Re: squid3-ipv6 squid3/src ACLIP.cc,1.8.2.45,1.8.2.46

2007-09-27 Thread Rafael Martinez \(Squid development\)
Amos, a little typo: Acording to original semantics of safe_inet_addr, I think the conditioal expresion must be positive SHOULD BE : > /* dotted notation */ > if (mask = asc) > return true; > Otherwise, acl all src 0.0.0.0 fails to parse Up to you the fix. > Index: ACL