- Apr 05, 2016
-
-
Luca Toscano authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737809 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737776 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737774 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737770 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737769 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
Add the missing -ne in RewriteCond Add some missing hyperlinks to the corresponding directives. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737768 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
Add the missing -ne in RewriteCond Add some missing hyperlinks to the corresponding directives. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737767 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 04, 2016
-
-
Rainer Jung authored
- BIO was made opaque after OpenSSL 1.1.0pre4. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737657 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 02, 2016
-
-
Lucien Gentis authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737516 13f79535-47bb-0310-9956-ffa450edef68
-
Lucien Gentis authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737515 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
Idea from Rob. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737476 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737463 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737462 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 01, 2016
-
-
Yann Ylavic authored
Same spurious (duplicated) local variable removal, this time for mpm_worker. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737451 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
Remove one spurious (duplicated) local variable and split some long lines. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737449 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
according the number of listeners buckets. We want the number of children processes to be a multiple of the number of buckets so to optimally accept connections (the system will distribute them accross all the buckets/listeners anyway, thus children must follow). For MinSpareThreads, this means that we need neither more nor less than one thread above 'threads_per_child * (num_buckets - 1)' to achieve this, since each created child adds threads_per_child workers. Actually, given that perform_idle_server_maintenance() is called per bucket, and hence checks 'threads_per_child / num_buckets' for one bucket, let's lower bound MinSpareThreads to 'threads_per_child * (num_buckets - 1) + num_buckets'. Previously we used 'threads_per_child * num_buckets' which caused one spurious child to be created from the very first busy worker thread of each newly added child. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737447 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737434 13f79535-47bb-0310-9956-ffa450edef68
-
Christophe Jaillet authored
Add a few more links to modules and directives (more could be done) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737433 13f79535-47bb-0310-9956-ffa450edef68
-
Luca Toscano authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737403 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737399 13f79535-47bb-0310-9956-ffa450edef68
-
Luca Toscano authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737397 13f79535-47bb-0310-9956-ffa450edef68
-
Luca Toscano authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737396 13f79535-47bb-0310-9956-ffa450edef68
-
Luca Toscano authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737383 13f79535-47bb-0310-9956-ffa450edef68
-
Luca Toscano authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737382 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 31, 2016
-
-
Yann Ylavic authored
We also need to reset the X509_STORE_CTX's error in the callback to quiet X509_V_ERR_UNABLE_TO_GET_CRL for the leaf certificate (caught by AH02010). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737265 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Eissing authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737256 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Eissing authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737254 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737186 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
Reported by: Luis Gil <ljgbpfeiffer googlemail.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737185 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 30, 2016
-
-
Ruediger Pluem authored
with other entries in the file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737148 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Eissing authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737125 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Ruggeri authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737115 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Ruggeri authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737114 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
core: 'xauth list|grep yl4p |awk '{print }' == 0' => 'x != 0' to avoid a compiler warning (suggesting parens). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737103 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Eissing authored
%k gives increasing numbers per master http2 connection. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737102 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737096 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 29, 2016
-
-
Yann Ylavic authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737053 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
s/<glossary href/<glossary ref/g and xml fixes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737052 13f79535-47bb-0310-9956-ffa450edef68
-
Yann Ylavic authored
Submitted by: Luis Gil de Bernabé Pfeiffer <ljgbpfeiffer googlemail.com> Reviewed by: Sergio Ramos git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737042 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Eissing authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737021 13f79535-47bb-0310-9956-ffa450edef68
-