Re: [squid-dev] [PATCH] shell un-escaping squidclient -H option

2016-05-19 Thread Alex Rousskov
On 05/19/2016 07:51 AM, Amos Jeffries wrote: > The squidclient -H parameter takes a string with some limited > shellescaped characters. Currently just \n was expanded to the CRLF > sequence. Other shell escaped characters were left untouched. > > However, to properly test headers containing weird

[squid-dev] Build failed in Jenkins: trunk-full-matrix » clang,d-debian-unstable #164

2016-05-19 Thread noc
See -- [...truncated 6946 lines...] make[5]: Leaving directory

[squid-dev] Jenkins build is back to normal : trunk-matrix » gcc,d-ubuntu-trusty #643

2016-05-19 Thread noc
See ___ squid-dev mailing list squid-dev@lists.squid-cache.org http://lists.squid-cache.org/listinfo/squid-dev

[squid-dev] [PATCH] Do not hide important/critical messages

2016-05-19 Thread Eduard Bagdasaryan
Hello, This is a trunk port for Alex's v3.5 reentrant debugging fix . Regards, Eduard. Do not allow low-level debugging to hide important/critical messages. Removed debugs() side effects that inadvertently resulted in

[squid-dev] Jenkins build is back to normal : trunk-matrix » gcc,d-debian-unstable #644

2016-05-19 Thread noc
See ___ squid-dev mailing list squid-dev@lists.squid-cache.org http://lists.squid-cache.org/listinfo/squid-dev

Re: [squid-dev] [PATCH] mime unfolding

2016-05-19 Thread Amos Jeffries
On 19/05/2016 1:59 p.m., Alex Rousskov wrote: > On 05/14/2016 06:42 AM, Amos Jeffries wrote: > > >> One of the parsers you will find attached (MIME_UNFOLD_SLOW) is that >> loop expanded into functions so each if statement gets its own named >> function and so non-genius people can avoid reading

[squid-dev] [PATCH] shell un-escaping squidclient -H option

2016-05-19 Thread Amos Jeffries
The squidclient -H parameter takes a string with some limited shellescaped characters. Currently just \n was expanded to the CRLF sequence. Other shell escaped characters were left untouched. However, to properly test headers containing weird CR, LF and HTAB positioning it needs to be able to

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

2016-05-19 Thread noc
See -- [...truncated 3093 lines...] checking for size_t... yes checking for ssize_t... yes checking for off_t... yes checking for uid_t in sys/types.h... yes checking

[squid-dev] Jenkins build is back to normal : trunk-matrix » clang,d-opensuse-13.2 #643

2016-05-19 Thread noc
See ___ squid-dev mailing list squid-dev@lists.squid-cache.org http://lists.squid-cache.org/listinfo/squid-dev

Re: [squid-dev] [PATCH] Do not hide important/critical messages

2016-05-19 Thread Amos Jeffries
On 19/05/2016 10:01 p.m., Eduard Bagdasaryan wrote: > Hello, > > This is a trunk port for Alex's v3.5 reentrant debugging fix > . > Thanks. But ... I just tried to apply this and got lots of rejects in Debugs.h and

Re: [squid-dev] [PATCH] mime unfolding

2016-05-19 Thread Alex Rousskov
On 05/19/2016 07:29 AM, Amos Jeffries wrote: > On 19/05/2016 1:59 p.m., Alex Rousskov wrote: (A) >> while (!tk.atEnd()) { >> const SBuf all = tk.remaining(); >> const auto crLen = tk.skipOne(CR); // may not be there >> const auto lfLen = tk.skipOne(LF); // may not be