summaryrefslogtreecommitdiffstats
path: root/ap.d (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-03-12use graceful exit if lister startedEric Covener1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916243 13f79535-47bb-0310-9956-ffa450edef68
2024-03-11event: avoid possible hang in clean_child_exitEric Covener1-0/+1
If the pthread_create failure isn't on the first worker thread, another one is likely to hold the queue mutex already. The cleanup of pchild will try to cleanup the queue and block on destroying the condition. ST_UNGRACEFUL as we have no listener thread yet. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916241 13f79535-47bb-0310-9956-ffa450edef68
2024-03-06optarg is from unistd.h, use opt_arg from apr_getopt().Jean-Frederic Clere1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916148 13f79535-47bb-0310-9956-ffa450edef68
2024-03-05CI: update actions to v4Joe Orton1-5/+5
Submitted by: Sagar <42873729+SagarCodeCtrl users.noreply.github.com> Github: closes #414 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916133 13f79535-47bb-0310-9956-ffa450edef68
2024-03-01CI: add OpenSSL 3.2, test OpenSSL 3.x using Apache::TestJoe Orton2-5/+12
trunk to pick up r1916067. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916068 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29CI: docs update only. [skip ci]Joe Orton2-18/+33
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916059 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29CI: Add OpenSSL 3.1 builds, including a no-engine build.Joe Orton3-1/+26
(attempt to use 3.2 failed, unsure why) - add OpenSSL build binaries to $PATH Github: closes #415 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916058 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29* modules/ssl/ssl_engine_pphrase.c (modssl_load_engine_keypair):Joe Orton2-10/+11
Update to avoid GCC warning for no-engine builds where the SSLModConfigRec is not used. Also log an error for the ENOTIMPL path. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916057 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29Fix regression in r1916055 - don't duplicate logic in _run_linux.shJoe Orton1-3/+3
from _before_linux.sh in whether the perl-framework is used/needed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916056 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29CI tweaks:Joe Orton2-8/+4
- don't install CPAN modules if NO_TEST_FRAMEWORK is set - remove the workaround for mod_h2 APR build caching which should no longer be necessary now caching is fixed - fix capturing specific perl-framework failures with "TEST -v" mode git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916055 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29mod_ssl: Check SSL_CTX_new() return valueJoe Orton1-0/+5
SSL_CTX_new() will return NULL if there was an error creating a new SSL context. Submitted by: StephenWall Github: closes #402 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916054 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29CI: Re-enable caching for *fixed* versions of apr/apr-util whichJoe Orton1-2/+0
should now work correctly (since the version is in the cache key). For 1.x branches, CLEAR_CACHE must still be used. [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916053 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29CI: Enable caching for the rustls install used for mod_tls testing.Joe Orton3-12/+16
Github: closes #416 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916052 13f79535-47bb-0310-9956-ffa450edef68
2024-02-29CI: Hopefully fix caching and artifact uploads by creating $JOBIDJoe Orton1-10/+8
as a unique key for each job in the matrix, using that as the cache key and in each artefact upload (otherwise multiple failures uploading "error_log" overwrite each other). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916051 13f79535-47bb-0310-9956-ffa450edef68
2024-02-26Don't reset the balancer when we create a new childJean-Frederic Clere2-4/+0
and don't change shared memory the load balancer is not using. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916004 13f79535-47bb-0310-9956-ffa450edef68
2024-02-25Ran ./build.sh all to get every previously not-updated file up to speedDaniel Ferradal32-2224/+2236
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915995 13f79535-47bb-0310-9956-ffa450edef68
2024-02-25Fix in title, expression, erratas for getting-started.xml.esDaniel Ferradal2-11/+11
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915994 13f79535-47bb-0310-9956-ffa450edef68
2024-02-25Added getting-started.xml.es Spanish Translation + files modified by ./build.shDaniel Ferradal8-21/+501
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915991 13f79535-47bb-0310-9956-ffa450edef68
2024-02-20mod_ssl: Follow up to r1913815: szCryptoDevice to NULL when ↵Yann Ylavic1-3/+1
!MODSSL_HAVE_ENGINE_API Latest OpenSSL versions removed the ENGINE API completely, still provide NULL SSLModConfigRec::szCryptoDevice since it's used outside MODSSL_HAVE_ENGINE_API. SSLModConfigRec is a private struct, so no MMN change. * modules/ssl/ssl_private(SSLModConfigRec): Provide szCryptoDevice (NULL) even if !MODSSL_HAVE_ENGINE_API. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915889 13f79535-47bb-0310-9956-ffa450edef68
2024-02-19* modules/proxy/mod_proxy_scgi.c: Mark global variables as static andJoe Orton1-4/+4
pointers as const. (no functional change) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915874 13f79535-47bb-0310-9956-ffa450edef68
2024-02-17added dsl.xml.es and dso.html.es.utf8Daniel Ferradal2-0/+617
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915843 13f79535-47bb-0310-9956-ffa450edef68
2024-02-17Added inicial dso.xml.es translationDaniel Ferradal4-3/+22
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915841 13f79535-47bb-0310-9956-ffa450edef68