Commit d2f9ffd5 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  This is the same granularity of control as mod_mime gave to set handlers
  (and now AddInputFilter and AddOutputFilter by extension) so this seems
  entirely appropriate in the core as well.  Options FileInfo is required
  to change the processing behavior of files.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90760 13f79535-47bb-0310-9956-ffa450edef68
parent e501b503
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -2817,14 +2817,9 @@ AP_INIT_TAKE12("RLimitNPROC", set_limit_nproc,
AP_INIT_TAKE12("RLimitNPROC", no_set_limit, NULL,
   OR_ALL, "soft/hard limits for max number of processes per uid"),
#endif
/* XXX These should be allowable in .htaccess files, but currently it won't
 * play well with the Options stuff.  Until that is fixed, I would prefer
 * to leave it just in the conf file.  Other should feel free to disagree
 * with me.  Rbb.
 */
AP_INIT_ITERATE("SetOutputFilter", add_filter, NULL, ACCESS_CONF,
AP_INIT_ITERATE("SetOutputFilter", add_filter, NULL, OR_FILEINFO,
   "filters to be run"),
AP_INIT_ITERATE("SetInputFilter", add_input_filter, NULL, ACCESS_CONF,
AP_INIT_ITERATE("SetInputFilter", add_input_filter, NULL, OR_FILEINFO,
   "filters to be run on the request body"),

/*