* "Brett E." <[EMAIL PROTECTED]> wrote: > Sorry for the confusion. I meant is it possible to use a #define macro > for the query string delimiter. Ie, everywhere we use '?' in the code, > use say QUERY_STRING_DELIM. For example: > > modules/mappers/mod_rewrite.c: > > q = strchr(r->filename, '?'); > > to > > q = strchr(r->filename, QUERY_STRING_DELIM); > > ..everywhere in the code.
I think, no. The question mark as query string delimiter is well defined in several RFCs. Since we implement HTTP, there's no reason to make that configurable. nd
