Re: idempotent http methods (svn commit: r617822)

2008-02-12 Thread Ruediger Pluem
On 02/02/2008 09:14 PM, Ruediger Pluem wrote: On 02/02/2008 07:08 PM, Nick Kew wrote: Suggested solution: an enum, with a third value for an idempotent method with arguments. The caller then determines how to use it. So you think of something like this (ok, no enum, but similar):

Re: idempotent http methods (svn commit: r617822)

2008-02-12 Thread Nick Kew
On 12 Feb 2008, at 20:53, Ruediger Pluem wrote: I know of none currently, but I assume that at least in mod_proxy (_http) the need for this test will rise, once we try to finally solve the race problem in mod_proxy_http when it sends a request over a connection that is closed just at this

Re: What am I doing wrong - site gen?

2008-02-12 Thread Erik Abele
On 24.01.2008, at 00:53, William A. Rowe, Jr. wrote: security/vulnerabilities-oval.xml I'm ending up with deltas such as these... -httpd_state xmlns=http://oval.mitre.org/XMLSchema/oval- definitions-5#apache id=oval:org.apache.httpd:ste:131 version=1 comment=the version of httpd is 1.3.1

Re: SNI test case

2008-02-12 Thread Guenter Knauf
Hi, Very useful. Might also make sense in a perlified version as part of the test code. here's a first perlified version; not finished yet; needs some cleanup, and not checked yet the results; but before someone else starts on it and doubles work I thought I post what I have so far...

Re: mod_substitute docs

2008-02-12 Thread Jim Jagielski
On Feb 11, 2008, at 10:15 AM, Rich Bowen wrote: On Oct 22, 2007, at 14:07, Jim Jagielski wrote: I'm a little concerned if the module ships /without/ the 'f'latten flag triggered by default. I'd rather the module offered the inverse option. This is truly a 'bug' users won't understand

Re: Script to create ca-bundle.crt

2008-02-12 Thread Oden Eriksson
Den Tuesday 12 February 2008 18.57.14 skrev Guenter Knauf: Hi Oden, But this is the world of RPM packaging, a litte OT. when being OT - can you tell me something about license issues with certdata.txt ? Do you have a written permisson to import the file into CVS? Is such needed? Do you

Re: Script to create ca-bundle.crt

2008-02-12 Thread Guenter Knauf
Hi Oden, But this is the world of RPM packaging, a litte OT. when being OT - can you tell me something about license issues with certdata.txt ? Do you have a written permisson to import the file into CVS? Is such needed? Do you have any info on that topic? Guen.

Re: Script to create ca-bundle.crt

2008-02-12 Thread Oden Eriksson
Den Tuesday 12 February 2008 17.23.27 skrev Guenter Knauf: Hi Oden, http://svn.mandriva.com/cgi-bin/viewvc.cgi/packages/cooker/rootcerts/curr ent/ from what I see this relies on the same source certdate.txt as my script; so what should be the benefit of maintaining copies of that? I wrote

Re: Script to create ca-bundle.crt

2008-02-12 Thread Guenter Knauf
Hi, I'm wondering why test/? (goes for Dirk's as well). Although if it's simply too test-case specific, the test/ dir sounds fine... ...if it's very general for admins - why not support/ ? sure, sounds better. Guen.

Re: Script to create ca-bundle.crt

2008-02-12 Thread Guenter Knauf
Hi Oden, http://svn.mandriva.com/cgi-bin/viewvc.cgi/packages/cooker/rootcerts/current/ from what I see this relies on the same source certdate.txt as my script; so what should be the benefit of maintaining copies of that? I wrote the script to make it easy to generate one self, and to be

Re: Script to create ca-bundle.crt

2008-02-12 Thread Oden Eriksson
Den Tuesday 12 February 2008 16.18.49 skrev Guenter Knauf: Hi, I was recently hacking on a script to create ca-bundle.crt: http://curl.haxx.se/lxr/source/lib/mk-ca-bundle.pl after I had finished my script I found that Joe already hacked a very similar script 3 years ago, and offered to the

Re: Script to create ca-bundle.crt

2008-02-12 Thread William A. Rowe, Jr.
Guenter Knauf wrote: Hi, I was recently hacking on a script to create ca-bundle.crt: http://curl.haxx.se/lxr/source/lib/mk-ca-bundle.pl after I had finished my script I found that Joe already hacked a very similar script 3 years ago, and offered to the OpenSSL project:

Script to create ca-bundle.crt

2008-02-12 Thread Guenter Knauf
Hi, I was recently hacking on a script to create ca-bundle.crt: http://curl.haxx.se/lxr/source/lib/mk-ca-bundle.pl after I had finished my script I found that Joe already hacked a very similar script 3 years ago, and offered to the OpenSSL project: http://www.mail-archive.com/[EMAIL

Re: Memory leak?

2008-02-12 Thread Jarek Kucypera
Could someone help me how to find the possibile memory leak? Divide and conquer: try to disable particular parts of your code and watch, when it stops eating memory. For every alloacation find matching deallocation and check if there is possibility the resources are not released. AFAIR APR

Memory leak?

2008-02-12 Thread Marco Spinetti
I'm experimenting some memory leak in my apache 2.2 module. I suppose that it's a memory leak because if I start apache (prefork) and I see with the top command (linux), the memory size (SIZE column of top) of httpd apache childs grows slowly with the increasing of the requests. For