Re: [squid-dev] [RFC] VISIO Diagrams assistant for the wiki.

2016-09-29 Thread Amos Jeffries
On 28/09/2016 11:20 a.m., Eliezer Croitoru wrote: > I got funds from my static work place for Visio and I am thinking about > Illustrating couple Diagrams for the Wiki. > I am looking for some guidance finding the right Diagrams. > Maybe I will find someone to help me with couple common symbols

Re: [squid-dev] [RFC] Support concurrent SBuf::c_str() calls

2016-09-29 Thread Amos Jeffries
On 30/09/2016 5:03 a.m., Alex Rousskov wrote: > Hello, > > The current trunk code contains at least two serious bugs caused by > SBuf::c_str() misuse. Both known bugs looks similar: > >> storeCreateEntry(storeUri.c_str(), storeUri.c_str(), ...); > > and > >> storeCreateEntry(uri.c_str(),

[squid-dev] Build failed in Jenkins: trunk-full-matrix » clang,d-ubuntu-wily #238

2016-09-29 Thread noc
See -- [...truncated 6783 lines...] make[5]: Entering directory

Re: [squid-dev] [PATCH] OSX transparent-proxy using pfctl

2016-09-29 Thread Alex Rousskov
On 09/29/2016 03:48 PM, Shively, Gregory wrote: >>> I wasn't sure if I should handle it or let it flow up, since if it was >>> in an overflow state I would doubt I could handle this packet, but >>> maybe the next connection would be successful. >> I recommend temporary adding an exception with

Re: [squid-dev] [PATCH] OSX transparent-proxy using pfctl

2016-09-29 Thread Shively, Gregory
> -Original Message- > From: Alex Rousskov [mailto:rouss...@measurement-factory.com] > Sent: Thursday, September 29, 2016 4:12 PM > To: squid-dev@lists.squid-cache.org > Cc: Shively, Gregory > Subject: [EXTERNAL] Re: [squid-dev] [PATCH] OSX transparent-proxy

[squid-dev] Build failed in Jenkins: trunk-full-matrix » clang,d-ubuntu-wily #237

2016-09-29 Thread noc
See -- [...truncated 6783 lines...] make[5]: Entering directory

Re: [squid-dev] [PATCH] OSX transparent-proxy using pfctl

2016-09-29 Thread Alex Rousskov
On 09/29/2016 01:12 PM, Shively, Gregory wrote: > Sometimes these mailing lists make me think like I'm talking to one > person :-). Glad we all sound coherent to you :-)! > ERROR: files left in build directory after distclean: > ./src/cf_gen.dSYM/Contents/Info.plist >

Re: [squid-dev] [PATCH] OSX transparent-proxy using pfctl

2016-09-29 Thread Shively, Gregory
> -Original Message- > From: Alex Rousskov [mailto:rouss...@measurement-factory.com] > Sent: Wednesday, September 28, 2016 6:05 PM > To: squid-dev@lists.squid-cache.org > Cc: Shively, Gregory > Subject: [EXTERNAL] Re: [squid-dev] [PATCH] OSX

[squid-dev] [RFC] Support concurrent SBuf::c_str() calls

2016-09-29 Thread Alex Rousskov
Hello, The current trunk code contains at least two serious bugs caused by SBuf::c_str() misuse. Both known bugs looks similar: > storeCreateEntry(storeUri.c_str(), storeUri.c_str(), ...); and > storeCreateEntry(uri.c_str(), uri.c_str(), ...); Both use cases violate safe c_str() use