Hi,
I am debugging some Apache API module and have run into these lines of
code. No one here seems to know any longer what the code does, so I
thought I'd ask here! It has something to do with SSI as best as I can
make out.
thanks much
Paul
/*
/* Note that the XBITHACK in Apache allows text/html pages to be
parsed
for SSI content if their execute bits are set - we have to
account
for this
if (!(r->finfo.st_mode & S_IXUSR))
return DECLINED;
state = (enum xbithack *) get_module_config(r->per_dir_config,
&includes
_module);
if (*state == xbithack_off)
return DECLINED;
*/