MCPcopy Create free account
hub / github.com/apache/httpd / lua_ap_options

Function lua_ap_options

modules/lua/lua_request.c:774–779  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

772
773
774static const char* lua_ap_options(request_rec* r)
775{
776 int opts;
777 opts = ap_allow_options(r);
778 return apr_psprintf(r->pool, "%s %s %s %s %s %s", (opts&OPT_INDEXES) ? "Indexes" : "", (opts&OPT_INCLUDES) ? "Includes" : "", (opts&OPT_SYM_LINKS) ? "FollowSymLinks" : "", (opts&OPT_EXECCGI) ? "ExecCGI" : "", (opts&OPT_MULTI) ? "MultiViews" : "", (opts&OPT_ALL) == OPT_ALL ? "All" : "" );
779}
780
781static const char* lua_ap_allowoverrides(request_rec* r)
782{

Callers

nothing calls this directly

Calls 1

ap_allow_optionsFunction · 0.85

Tested by

no test coverage detected