]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
update xforms
authorIgor Galić <igalic@apache.org>
Thu, 24 Nov 2011 15:41:09 +0000 (15:41 +0000)
committerIgor Galić <igalic@apache.org>
Thu, 24 Nov 2011 15:41:09 +0000 (15:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1205889 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/new_api_2_4.html.en
docs/manual/misc/security_tips.html.en
docs/manual/misc/security_tips.xml.ko
docs/manual/misc/security_tips.xml.tr
docs/manual/mod/mod_ratelimit.html.en

index 8e9f55cd8b59ba1ff75e9bb63e887218866abe04..0442b662b149d56154f907e6ed3d15fb5405a30c 100644 (file)
       <li>New function ap_get_server_name_for_url to support ipv6 literals.</li>
       <li>New function ap_register_errorlog_handler to register errorlog
           format string handlers.</li>
+      <li>Arguments of error_log hook have changed. Declaration has moved to
+          <code>http_core.h</code>.</li>
       <li>New function ap_state_query to determine if the server is in the
           initial configuration preflight phase or not. This is both easier to
           use and more correct than the old method of creating a pool userdata
index 9fd189d2f983a5bf820f535f633ae042542f3b96..64f27b093383c4a494501873e580130a9071d0d3 100644 (file)
 
       <li>The use of a threaded <a href="../mpm.html">mpm</a> may
       allow you to handle more simultaneous connections, thereby
-      mitigating DoS attacks.  Further, the experimental
+      mitigating DoS attacks.  Further, the 
       <code class="module"><a href="../mod/event.html">event</a></code> mpm
       uses asynchronous processing to avoid devoting a thread to each
-      connection. At the current point of time this
-      is work in progress and not fully implemented.  Especially the
+      connection. Due to the nature of the OpenSSL library the
       <code class="module"><a href="../mod/event.html">event</a></code> mpm is currently incompatible with
-      <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> and other input filters.</li>
+         <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> and other input filters. In these
+      cases it falls back to the behaviour of the
+      <code class="module"><a href="../mod/worker.html">worker</a></code> mpm.</li>
 
       <li>There are a number of third-party modules available through
       <a href="http://modules.apache.org/">http://modules.apache.org/</a>
index 85c5fa9017c6c94a5e8b5d85564fe5063f86ec1c..e682c565a675dad379479de631965bb1c05c802d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1188200 (outdated) -->
+<!-- English Revision: 105989:1205886 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index d9cfba47c5daf807e791b91a17db908010b590db..42414cc4155f0a3c0f6b4926a5253fbebbcd79f0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 805049:1188200 (outdated) -->
+<!-- English Revision: 805049:1205886 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index 357ddbdbfe3761019a683fb476f6708c91a5bec2..259196a20448bb184d488559445ae14e3198ec17 100644 (file)
 <h3>Summary</h3>
 
 
-<p>Provides a <code>rate_limit</code> filter to limit client bandwidth.
-The connection speed to be simulated is specified, in kb/s, using the environment
+<p>Provides a filter named <code>RATE_LIMIT</code> to limit client bandwidth.
+The connection speed to be simulated is specified, in KiB/s, using the environment
 variable <code>rate-limit</code>.</p>
 
 <div class="example"><h3>Example Configuration</h3><p><code>
 &lt;Location /downloads&gt;<br />
 <span class="indent">
-SetHandler RATE_LIMIT<br />
+SetOutputFilter RATE_LIMIT<br />
 SetEnv rate-limit 400 <br />
 </span>
 &lt;/Location&gt;