Re: test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-20 Thread Jeff Trawick
On Thu, Mar 19, 2009 at 4:36 PM, Jeff Trawick traw...@gmail.com wrote: assert(Whatever is done in mod_ssl, the 2.3 logic in mod_authany needs to ensure that its check user id hook runs after mod_ssl's.) I'm going with this code in mod_authany for Apache 2.0/2.2 as soon as it checks out okay on

Re: test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-20 Thread Oden Eriksson
torsdag 19 mars 2009 21:36:42 skrev Jeff Trawick: [...] I keep getting: t/modules/include...ok 46/88# Failed test 67 in t/modules/include.t at line 396 On Mandriva Linux (cooker) -- Regards // Oden Eriksson This email has been processed by SmoothZap -

Re: test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-20 Thread Jeff Trawick
2009/3/20 Oden Eriksson oden.eriks...@envitory.se torsdag 19 mars 2009 21:36:42 skrev Jeff Trawick: [...] I keep getting: t/modules/include...ok 46/88# Failed test 67 in t/modules/include.t at line 396 On Mandriva Linux (cooker) AFAICT, that observation is completely

Re: test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-20 Thread Plüm, Rüdiger, VF-Group
-Ursprüngliche Nachricht- Von: Oden Eriksson Gesendet: Freitag, 20. März 2009 16:53 An: dev@httpd.apache.org Betreff: Re: test framework/mod_authany's check user id hook vs. mod_ssl's torsdag 19 mars 2009 21:36:42 skrev Jeff Trawick: [...] I keep getting: t/modules/include

Re: test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-20 Thread Joe Orton
On Thu, Mar 19, 2009 at 04:36:42PM -0400, Jeff Trawick wrote: Beyond the mod_authany question, why doesn't mod_ssl declare its check user id hook really-first if it can generate the basic auth? (Let the extremely limited number of modules which generate basic auth headers fight it out via

Re: test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-20 Thread William A. Rowe, Jr.
Joe Orton wrote: On Thu, Mar 19, 2009 at 04:36:42PM -0400, Jeff Trawick wrote: Beyond the mod_authany question, why doesn't mod_ssl declare its check user id hook really-first if it can generate the basic auth? (Let the extremely limited number of modules which generate basic auth headers

Re: test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-20 Thread Oden Eriksson
fredag 20 mars 2009 17:09:43 skrev Plüm, Rüdiger, VF-Group: -Ursprüngliche Nachricht- Von: Oden Eriksson Gesendet: Freitag, 20. März 2009 16:53 An: dev@httpd.apache.org Betreff: Re: test framework/mod_authany's check user id hook vs. mod_ssl's torsdag 19 mars 2009 21:36:42

test framework/mod_authany's check user id hook vs. mod_ssl's

2009-03-19 Thread Jeff Trawick
mod_authany's check user id hook is registered to run APR_HOOK_FIRST, as is mod_ssl's. mod_ssl's check user id hook needs to run before anything else that *uses* basic auth because it can create basic auth information from the certificate, for processing by normal check user id hooks. Like