Re: [mod_wombat] UserData Metatables

2007-05-06 Thread Rici Lake
Brian McCallister wrote: I am leaning towards changing all the userdata types (request_rec, server_rec, conn_rec, apr_table_t) in mod_wombat to have anonymous metatables rather than the current setup where they share a metatable. +1 The drawback is that we lose the ~type safety of being

Re: svn commit: r534533 - in /httpd/httpd/trunk: include/http_core.h modules/aaa/mod_access_compat.c modules/aaa/mod_auth.h modules/aaa/mod_authz_core.c modules/aaa/mod_authz_default.c server/core.c s

2007-05-06 Thread Ruediger Pluem
On 05/02/2007 06:31 PM, [EMAIL PROTECTED] wrote: Author: bnicholes Date: Wed May 2 09:31:39 2007 New Revision: 534533 URL: http://svn.apache.org/viewvc?view=revrev=534533 Log: re-introduce ap_satisfies API back into core and modify how the access_checker, check_user_id and

Re: svn commit: r535348 - /httpd/httpd/branches/2.2.x/STATUS

2007-05-06 Thread Ruediger Pluem
On 05/04/2007 08:46 PM, [EMAIL PROTECTED] wrote: Author: jim Date: Fri May 4 11:46:19 2007 New Revision: 535348 URL: http://svn.apache.org/viewvc?view=revrev=535348 Log: Note backport that should be in our collective consciousness but the MSB_PEEK flag needs to be looked at...

Re: [mod_wombat] UserData Metatables

2007-05-06 Thread Brian McCallister
On May 6, 2007, at 5:39 AM, Rici Lake wrote: Hope all that helps. I'll be away for four weeks on vacation, so I tried to be as explicit as I could... Incredibly, thank you! -Brian

Re: Testing debugging?

2007-05-06 Thread Issac Goldstand
Try looking at Apache::Test. It's written in Perl, but is supposed to work well with C modules just as well. See http://perl.apache.org/docs/general/testing/testing.html#Developing_Test_Response_Handlers_in_C Tim Bray wrote: I'd be so much happier if I had unit tests, but it's tricky since

Re: Testing debugging?

2007-05-06 Thread Mads Toftum
On Sat, May 05, 2007 at 10:03:24PM -0700, Tim Bray wrote: I'd be so much happier if I had unit tests, but it's tricky since everything's static. My best idea is to have an #ifdef TESTING section in my code that has a main() in it that runs the tests (of course this means actually