Re: [squid-users] squid-5 lost my cached dir

2018-02-21 Thread joseph
thank you and thanks to eduard bagdasaryan no more memory overrun on his big patch hoop someone soon work on real range caching since the real world ar https mostly now so adding real range caching will save us more bandwidth on http squid server - ** * Cr

Re: [squid-users] squid-5 lost my cached dir

2018-02-21 Thread Alex Rousskov
On 02/20/2018 05:04 PM, Alex Rousskov wrote: > Thank you and joseph for providing these important details. If we can > reproduce the problem, then we will post a pull request with a fix once > it is is available. Done: https://github.com/squid-cache/squid/pull/155 Alex. > On 02/20/2018 04:57 PM

Re: [squid-users] squid-5 lost my cached dir

2018-02-21 Thread joseph
testing https://github.com/squid-cache/squid/pull/155 working fine :) i will report if something else came up but so fare so good tks - ** * Crash to the future ** -- Sent from: http://squid-web-proxy-cache.1019090.n4.nabble.com/Squ

Re: [squid-users] how can i provide outgoing ip address of a client public ip address for every client ?

2018-02-21 Thread Amos Jeffries
On 22/02/18 03:04, Yavuz Maşlak wrote: > Hi > > I have some clients that have their own public ip addresses. They will use > a Proxy server. > When a client reach to internet, I want squid to provide that client should > reach internet with own ip address instead of squid 's ip address. > > Ho

Re: [squid-users] squid-5 lost my cached dir

2018-02-21 Thread joseph
sorry this fix the start rebuild if swap.state is empty but there is more issue wen you stop squid it delete the swap.state and re create new one empty - ** * Crash to the future ** -- Sent from: http://squid-web-proxy-cache.101

Re: [squid-users] Forward proxy: TLS connections to server

2018-02-21 Thread ninadmnaik
Great. Thanks for such a thorough explanation Amos ! Cleared a lot of doubts. -- Sent from: http://squid-web-proxy-cache.1019090.n4.nabble.com/Squid-Users-f1019091.html ___ squid-users mailing list squid-users@lists.squid-cache.org http://lists.squid

[squid-users] how can i provide outgoing ip address of a client public ip address for every client ?

2018-02-21 Thread Yavuz Maşlak
Hi I have some clients that have their own public ip addresses. They will use a Proxy server. When a client reach to internet, I want squid to provide that client should reach internet with own ip address instead of squid 's ip address. How can i do that ? ___

Re: [squid-users] squid-5 lost my cached dir

2018-02-21 Thread joseph
found where the bug and i made it work but i dont know wat is the best in UFSSwapDir.cc function Fs::Ufs::UFSSwapDir::openTmpSwapLog(int *clean_flag, int *zero_flag) was -->*zero_flag = log_sb.st_size == 0 ? 1 : 0; change to *zero_flag = log_sb.st_size == 0 ? 0 : 1; best to change int to b

Re: [squid-users] Forward proxy: TLS connections to server

2018-02-21 Thread Amos Jeffries
On 21/02/18 18:38, ninadmnaik wrote: > Does the "https_port intercept ssl-bump" work only in transparent proxy > scenarios, where the DNAT changes have been applied? > https://wiki.squid-cache.org/ConfigExamples/Intercept/LinuxDnat The "intercept" mode flag alone is what means DNAT is taking place