Re: [squid-dev] [PATCH] convert Delay Pools classes to use MEMPROXY_CLASS

2017-01-21 Thread Alex Rousskov
On 01/21/2017 06:42 PM, Amos Jeffries wrote: > This patch converts all the delay pools classes which were providing the > new/delete operators to using MEMPROXY_CLASS instead. So each class in > separately accounted for and we get a better view of allocation stats > and behaviours from the

Re: [squid-dev] [PATCH] initial GnuTLS support for encrypted server connections

2017-01-21 Thread Amos Jeffries
On 20/01/2017 8:11 a.m., Alex Rousskov wrote: > >>> Does the patched code continue to work well with OpenSSL? > > You have not answered this question. Please do not commit these changes > until the OpenSSL build is tested. > Hi Christos, Would you be able to do some tests for the mk2 patch

[squid-dev] [PATCH] convert Delay Pools classes to use MEMPROXY_CLASS

2017-01-21 Thread Amos Jeffries
The delay pools classes were using custom new/delete methods to allocate and account for pool overheads in a single counter. There is no need for this with memory pools and it makes the debugging harder and code more complex overall. This patch converts all the delay pools classes which were