[squid-dev] Build failed in Jenkins: trunk-matrix » gcc,d-debian-wheezy #814

2016-10-27 Thread noc
http://build.squid-cache.org/job/trunk-matrix/compiler=gcc,label=d-debian-wheezy/814/-- [...truncated 4601 lines...] libtool: link: (cd .libs/libfs.lax/libaufs.a && /usr/bin/ar x

Re: [squid-dev] [PATCH] Refactor wordlist to SBufList in acl/RegexData

2016-10-27 Thread Kinkie
On Thu, Oct 27, 2016 at 5:10 AM, Alex Rousskov wrote: > On 10/26/2016 05:18 PM, Kinkie wrote: the attached patch refactors the use of wordlist to SBufList in acl/RegexData.cc > >> -while (wl != NULL) { >> +for (SBuf i : sl) { > > If possible,

[squid-dev] Heads up with bzr and lp: urls

2016-10-27 Thread Kinkie
Hi all, I just found out that launchpad suffers from a bug where bzr will hang if trying to negotiate an ecdsa key. Workaround here: https://bugs.launchpad.net/lazr.sshserver/+bug/830679 -- Francesco ___ squid-dev mailing list

[squid-dev] Build failed in Jenkins: trunk-matrix » gcc,d-debian-wheezy #815

2016-10-27 Thread noc
http://build.squid-cache.org/job/trunk-matrix/compiler=gcc,label=d-debian-wheezy/815/-- [...truncated 4601 lines...] libtool: link: (cd .libs/libfs.lax/libaufs.a && /usr/bin/ar x

[squid-dev] [PATCH] StrList removal

2016-10-27 Thread Amos Jeffries
This patch completes the refactoring of StrList / link_list users to STL containers. Removing the StrList.* files entirely. It has had several hours of use with web traffic in a configuration tuned to force disk caching of objects to excercise the replacement code. No issues were seen in that

[squid-dev] Build failed in Jenkins: trunk-matrix » gcc,d-debian-wheezy #816

2016-10-27 Thread noc
http://build.squid-cache.org/job/trunk-matrix/compiler=gcc,label=d-debian-wheezy/816/-- [...truncated 4572 lines...] libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I../../../src/fs

[squid-dev] Build failed in Jenkins: trunk-matrix » gcc,d-ubuntu-utopic #816

2016-10-27 Thread noc
http://build.squid-cache.org/job/trunk-matrix/compiler=gcc,label=d-ubuntu-utopic/816/-- [...truncated 33882 lines...] /bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib

Re: [squid-dev] [PATCH] StrList removal

2016-10-27 Thread Amos Jeffries
On 28/10/2016 3:38 a.m., Alex Rousskov wrote: > On 10/27/2016 08:04 AM, Amos Jeffries wrote: >> -while ((entry = (StoreEntry >> *)linklistShift(_walker->locked_entries))) { >> +while (StoreEntry *entry = heap_walker->locked_entries.front()) { > > This change is a bug AFAICT. Old