static int Rivet_Handler()

in src/mod_rivet_ng/mod_rivet.c [500:508]


static int Rivet_Handler (request_rec *r)
{
    rivet_req_ctype ctype = Rivet_CheckType(r);
    if (ctype == CTYPE_NOT_HANDLED) {
        return DECLINED;
    }

    return (*RIVET_MPM_BRIDGE_FUNCTION(request_processor))(r,ctype);
}