]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove all of the Satisfy functionality from the request handing. All the various...
authorBradley Nicholes <bnicholes@apache.org>
Fri, 30 Dec 2005 00:00:31 +0000 (00:00 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Fri, 30 Dec 2005 00:00:31 +0000 (00:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/authz-dev@359929 13f79535-47bb-0310-9956-ffa450edef68

server/request.c

index e62467a3580bf9a0f74b364a7bf6936ce3c333ae..de69b3c769361c9c459bc49973ebc4100bfacac1 100644 (file)
@@ -183,6 +183,19 @@ AP_DECLARE(int) ap_process_request_internal(request_rec *r)
         r->ap_auth_type = r->prev->ap_auth_type;
     }
     else {
+        if ((access_status = ap_run_access_checker(r)) != 0) {
+            return decl_die(access_status, "check access", r);
+        }
+
+        if ((access_status = ap_run_check_user_id(r)) != 0) {
+            return decl_die(access_status, "check user", r);
+        }
+
+        if ((access_status = ap_run_auth_checker(r)) != 0) {
+            return decl_die(access_status, "check authorization", r);
+        }
+
+/*
         switch (ap_satisfies(r)) {
         case SATISFY_ALL:
         case SATISFY_NOSPEC:
@@ -228,6 +241,7 @@ AP_DECLARE(int) ap_process_request_internal(request_rec *r)
             }
             break;
         }
+*/        
     }
     /* XXX Must make certain the ap_run_type_checker short circuits mime
      * in mod-proxy for r->proxyreq && r->parsed_uri.scheme