Re: C/C++ MVC framework

2008-03-24 Thread josh rotenberg
take a look at mod_spin: http://www.rexursive.com/software/modspin/ On Mon, Mar 24, 2008 at 12:59 PM, Sam Carleton <[EMAIL PROTECTED]> wrote: > I was just wondering if anyone had ever developed a MVC framework in > either C or C++ to develop Apache modules. They seem to be out there > for most

Re: Creating shm segment in module creation function

2007-05-25 Thread josh rotenberg
I *think* as long as you create it in the parent process before the children are forked, it should be ok, but post_config is probably a better place, if for no other reason than it keeps your directive handlers simpler, and lets you not have to expect one to come before another. If your module is

Re: Looking for info wrt requests and no newline

2007-05-23 Thread josh rotenberg
Have a look at mod_smtpd, too, its got a lot of useful protocol handling stuff in it as well. http://httpd.apache.org/mod_smtpd/ On 5/22/07, Anique van der Vlugt <[EMAIL PROTECTED]> wrote: Thanks Bill for the pointers (c.f. mod_echo, mod_http, mod_ftp), I will have a look. Many thanks :) *Ani

Re: Looking for TFM on OS X module building

2007-05-01 Thread josh rotenberg
I put my tarball of stuff up on google code for anyone else that might be interested: http://code.google.com/p/modskeleton/ The goal is to have something that sets you up for mutliple source files, a utils directory for other binary tools/scripts, etc. As the name suggests, it is just a skeleton.