summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* sync with trunk before I start mucking in the waters themselvesapreq-integrationPhilip M. Gollucci2008-12-106-15/+256
|\ | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/apreq-integration@725390 13f79535-47bb-0310-9956-ffa450edef68
| * Fix meta-file link error introduced in r725291Takashi Sato2008-12-101-1/+1
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725334 13f79535-47bb-0310-9956-ffa450edef68
| * update for sync with English docs.Takashi Sato2008-12-101-3/+3
| | | | | | | | | | | | | | | | | | English Revison: 420990 Submitted by: kawai Reviewed by: takashi git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725327 13f79535-47bb-0310-9956-ffa450edef68
| * Add an incomplete document for mod_lbmethod_heartbeat.Takashi Sato2008-12-101-0/+52
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725291 13f79535-47bb-0310-9956-ffa450edef68
| * Add incomplete documents for mod_heartbeat and mod_heartmonitor.Takashi Sato2008-12-102-0/+106
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725289 13f79535-47bb-0310-9956-ffa450edef68
| * Hopefully the final fix for the subreq/filter issue. TheJim Jagielski2008-12-101-12/+9
| | | | | | | | | | | | | | | | | | | | | | prob was that we at this point could still have some stale and incorrect refs when we adjusted the f-stack. So move the update earlier so when we adjust, we're affecting r. RŸdiger and Jim pretty much simultaneously :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725077 13f79535-47bb-0310-9956-ffa450edef68
| * Add security section to mod_privileges docsNick Kew2008-12-101-0/+86
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724959 13f79535-47bb-0310-9956-ffa450edef68
* | relocate so that we don't need to rename apreq_ to ap_Philip M. Gollucci2008-12-1032-0/+0
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/apreq-integration@725386 13f79535-47bb-0310-9956-ffa450edef68
* | copy the apreq module itself over to httpd server core modulesPhilip M. Gollucci2008-12-106-0/+1035
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/apreq-integration@725384 13f79535-47bb-0310-9956-ffa450edef68
* | copy the library over to the httpd server corePhilip M. Gollucci2008-12-1032-0/+8804
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/apreq-integration@725379 13f79535-47bb-0310-9956-ffa450edef68
* | branch to integrate libapreq and mod_apreq2 to httpd corePhilip M. Gollucci2008-12-090-0/+0
|/ | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/apreq-integration@724895 13f79535-47bb-0310-9956-ffa450edef68
* whitespace cleanupChris Darroch2008-12-091-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724813 13f79535-47bb-0310-9956-ffa450edef68
* reset chain if we need to...Jim Jagielski2008-12-091-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724805 13f79535-47bb-0310-9956-ffa450edef68
* * modules/ssl/ssl_private.h: Add a big fat warning aboutJoe Orton2008-12-091-0/+28
| | | | | | | the SSLModConfigRec lifetime. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724802 13f79535-47bb-0310-9956-ffa450edef68
* * modules/ssl/ssl_engine_config.c (ssl_cmd_SSLSessionCache): Don't fixJoe Orton2008-12-091-5/+1
| | | | | | | | the socache instance for the lifetime of the process since it is allocated out of pconf. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724789 13f79535-47bb-0310-9956-ffa450edef68
* * include/ap_socache.h: Use C++ safety wrappers, and rename ->deleteJoe Orton2008-12-092-3/+11
| | | | | | | | | to ->remove since the former is a C++ reserved word. * modules/ssl/ssl_scache.c (ssl_scache_remove): Update accordingly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724745 13f79535-47bb-0310-9956-ffa450edef68
* * include/ap_socache.h: Define AP_SOCACHE_DEFAULT_PROVIDER as aJoe Orton2008-12-092-0/+9
| | | | | | | | | | | default provider name, to allow consumers to use a default provider if not configured otherwise. * modules/cache/mod_socache_shmcb.c (register_hooks): Register shmcb as the default provider. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724723 13f79535-47bb-0310-9956-ffa450edef68
* Improve mod_ssl's environment variable extraction to correctly handleJoe Orton2008-12-094-71/+118
| | | | | | | | | | | | | | | | | | | | | | | DNs with duplicate tags: * modules/ssl/ssl_engine_vars.c: Augment the ssl_var_lookup_ssl_cert_dn_rec table with a flag to indicate whether RDNs of the given NID should be extracted to the environment. (extract_dn, modssl_var_extract_dns): New functions. * modules/ssl/ssl_private.h (modssl_var_extract_dns): Add prototype. * modules/ssl/ssl_engine_kernel.c: Remove SSL_*_DN_ from the list of variables to insert into the environment. (ssl_hook_Fixup): Use modssl_var_extract_dns to insert the SSL_*_DN_ variables efficiently and accurately, handling certs with duplicate RDN tags correctly. PR: 45875 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724717 13f79535-47bb-0310-9956-ffa450edef68
* Reduce config overhead for use of socache interface by allowingJoe Orton2008-12-093-19/+56
| | | | | | | | | | | | | | | | | | | default paths to be used if none are configured: * include/ap_socache.h (ap_socache_provider_t::create): Allow arg to be NULL to force use of defaults. (ap_socache_provider_t::init): Rename 'namespace' parameter to 'cname' and restrict to allow use in filesystem paths. * modules/cache/mod_socache_dbm.c (socache_dbm_create, socache_dbm_init), modules/cache/mod_socache_shmcb.c (socache_shmcb_create, socache_shmcb_init): Default to use of runtimedir-relative paths if no explicit path is configured. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724682 13f79535-47bb-0310-9956-ffa450edef68
* Increment version.ent. We are at 2.3.1-dev.Takashi Sato2008-12-091-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724667 13f79535-47bb-0310-9956-ffa450edef68
* missing line breaksRoy T. Fielding2008-12-091-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724569 13f79535-47bb-0310-9956-ffa450edef68
* * Correctly remove the SUBREQ_CORE filter from the filter chain if we do anRuediger Pluem2008-12-081-3/+20
| | | | | | | | | internal fast redirect and if the new redirected request is NO subrequest. This fixes at least one of the possible subtle issues mentioned in the comment to r620133. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724515 13f79535-47bb-0310-9956-ffa450edef68
* OK, instead of an igly hack, just use the normalJim Jagielski2008-12-083-30/+20
| | | | | | | | build system impl to force balancer's config to happen post proxy git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724367 13f79535-47bb-0310-9956-ffa450edef68
* Explain some thingsJim Jagielski2008-12-081-0/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724360 13f79535-47bb-0310-9956-ffa450edef68
* Force the lbmethod submodules to be loaded AFTERJim Jagielski2008-12-082-20/+22
| | | | | | | mod_proxy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724358 13f79535-47bb-0310-9956-ffa450edef68
* * Remove unused variableRuediger Pluem2008-12-081-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724332 13f79535-47bb-0310-9956-ffa450edef68
* Make sure the htdocs directory appears in the RPM build.Graham Leggett2008-12-071-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724168 13f79535-47bb-0310-9956-ffa450edef68
* Remove the obsolete serial attribute from the RPM spec file. CompileGraham Leggett2008-12-072-6/+12
| | | | | | | | against the external pcre. Add missing binaries fcgistarter, and mod_socache* and mod_session*. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724162 13f79535-47bb-0310-9956-ffa450edef68
* Add a note that these are under development.Takashi Sato2008-12-073-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724103 13f79535-47bb-0310-9956-ffa450edef68
* 2.3.1 is now in development.Paul Querna2008-12-071-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724097 13f79535-47bb-0310-9956-ffa450edef68
* Roll on trunk to 2.3.1-dev.Paul Querna2008-12-071-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724096 13f79535-47bb-0310-9956-ffa450edef68
* Remove -dev flag to prepare for 2.3.0.Paul Querna2008-12-071-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724094 13f79535-47bb-0310-9956-ffa450edef68
* When an expires or cache-control header are sent, the RFC does allow us to ↵Paul Querna2008-12-072-1/+26
| | | | | | | | | cache normally non-cacheable response statuses. Submitted by: Alex Polvi <alex polvi.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724093 13f79535-47bb-0310-9956-ffa450edef68
* Use cmd->temp_pool for temp allocations during configuration.Paul Querna2008-12-072-5/+5
| | | | | | | Suggested by: Takashi Sato <takashi lans-tv.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724092 13f79535-47bb-0310-9956-ffa450edef68
* Make ctx:status an apr_status_t, and be consistent about checking and ↵Paul Querna2008-12-072-10/+10
| | | | | | | | | setting it. Suggested by: Takashi Sato <takashi lans-tv.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724091 13f79535-47bb-0310-9956-ffa450edef68
* Use APR_THREAD_FUNC for heart{beat,monitor} thread workers.Paul Querna2008-12-072-2/+2
| | | | | | | Suggested by: Takashi Sato <takashi lans-tv.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724090 13f79535-47bb-0310-9956-ffa450edef68
* Remove commented out block that wouldn't even work in this context.Paul Querna2008-12-071-4/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724084 13f79535-47bb-0310-9956-ffa450edef68
* bump minor for new apisPaul Querna2008-12-071-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724083 13f79535-47bb-0310-9956-ffa450edef68
* Don't pass in a pool to to argstr_to_table, and duplicate r->args before ↵Paul Querna2008-12-071-3/+3
| | | | | | sending it in. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724080 13f79535-47bb-0310-9956-ffa450edef68
* update transformationsTakashi Sato2008-12-0669-622/+865
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724013 13f79535-47bb-0310-9956-ffa450edef68
* fix XML errors of r723560Takashi Sato2008-12-061-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724007 13f79535-47bb-0310-9956-ffa450edef68
* Sync with the codes about the independence of load balancing scheduler ↵Takashi Sato2008-12-064-234/+356
| | | | | | algorithms. (r722948 - r722952) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724006 13f79535-47bb-0310-9956-ffa450edef68
* * Don't enable mod_wombat by default for now.Ruediger Pluem2008-12-061-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723960 13f79535-47bb-0310-9956-ffa450edef68
* provide a little more context in the multiple hostnames exampleEric Covener2008-12-052-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723890 13f79535-47bb-0310-9956-ffa450edef68
* Merge mod_wombat from the wombat branch:Paul Querna2008-12-0534-0/+3934
|\ | | | | | | | | | | | | | | <https://svn.apache.org/repos/asf/httpd/httpd/branches/wombat-integration> Into trunk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723843 13f79535-47bb-0310-9956-ffa450edef68
| * Update ignore.wombat-integrationPaul Querna2008-12-050-0/+0
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/wombat-integration@723655 13f79535-47bb-0310-9956-ffa450edef68
| * Finish removing dependecy on apreqPaul Querna2008-12-051-7/+6
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/wombat-integration@723654 13f79535-47bb-0310-9956-ffa450edef68
| * Build the right objects for wombat.Paul Querna2008-12-051-1/+1
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/wombat-integration@723653 13f79535-47bb-0310-9956-ffa450edef68
| * New API, ap_body_to_table, a very ineffeicent and bad hack to remove an ↵Paul Querna2008-12-053-0/+80
| | | | | | | | | | | | apreq dependency. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/wombat-integration@723652 13f79535-47bb-0310-9956-ffa450edef68
| * Update ignore.Paul Querna2008-12-050-0/+0
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/wombat-integration@723634 13f79535-47bb-0310-9956-ffa450edef68