]> granicus.if.org Git - apache/log
apache
13 years agoNew hook: ap_run_pre_read_request()
Jim Jagielski [Mon, 14 Feb 2011 19:21:37 +0000 (19:21 +0000)]
New hook: ap_run_pre_read_request()

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070616 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMention ap_state_query() in the new API docs
Stefan Fritsch [Sun, 13 Feb 2011 22:44:27 +0000 (22:44 +0000)]
Mention ap_state_query() in the new API docs

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070318 13f79535-47bb-0310-9956-ffa450edef68

13 years agoFix two bugs introduced by r1070153
Stefan Fritsch [Sun, 13 Feb 2011 22:34:02 +0000 (22:34 +0000)]
Fix two bugs introduced by r1070153

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070317 13f79535-47bb-0310-9956-ffa450edef68

13 years agomod_cache: When a request other than GET or HEAD arrives, we must
Graham Leggett [Sun, 13 Feb 2011 02:03:29 +0000 (02:03 +0000)]
mod_cache: When a request other than GET or HEAD arrives, we must
invalidate existing cache entities as per RFC2616 13.10. PR 15868.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070179 13f79535-47bb-0310-9956-ffa450edef68

13 years agomod_cache: Make sure that the moving of the CACHE filter to another
Graham Leggett [Sat, 12 Feb 2011 23:21:18 +0000 (23:21 +0000)]
mod_cache: Make sure that the moving of the CACHE filter to another
point within a subrequest is limited to affecting filters in that
subrequest only.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070161 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUse ap_state_query() to fix many modules that were not correctly initializing
Stefan Fritsch [Sat, 12 Feb 2011 21:23:56 +0000 (21:23 +0000)]
Use ap_state_query() to fix many modules that were not correctly initializing
if they were not active during server startup but got enabled later during a
graceful restart (in which case they need to do all work during a single
config run).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070153 13f79535-47bb-0310-9956-ffa450edef68

13 years agoCreate new ap_state_query() function that allows modules to determine
Stefan Fritsch [Sat, 12 Feb 2011 21:18:32 +0000 (21:18 +0000)]
Create new ap_state_query() function that allows modules to determine
if the current configuration run is the initial one at server startup,
and if the server is started for testing/config dumping only.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070151 13f79535-47bb-0310-9956-ffa450edef68

13 years agomod_cache: When a bad Expires date is present, we need to behave as if
Graham Leggett [Sat, 12 Feb 2011 19:02:58 +0000 (19:02 +0000)]
mod_cache: When a bad Expires date is present, we need to behave as if
the Expires is in the past, not as if the Expires is missing. PR 16521.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070128 13f79535-47bb-0310-9956-ffa450edef68

13 years agoLog something nicer than "Internal error: pcfg_openfile() called
Stefan Fritsch [Sat, 12 Feb 2011 15:52:17 +0000 (15:52 +0000)]
Log something nicer than "Internal error: pcfg_openfile() called
with NULL filename" if no password file is configured

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070096 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* docs/manual/mod/: Play language lawyer with the SSL_*_DN_*_n variable
Joe Orton [Sat, 12 Feb 2011 15:41:17 +0000 (15:41 +0000)]
* docs/manual/mod/: Play language lawyer with the SSL_*_DN_*_n variable
  description.

PR: 45875

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070094 13f79535-47bb-0310-9956-ffa450edef68

13 years agomod_cache: We must ignore quoted-string values that appear in a
Graham Leggett [Sat, 12 Feb 2011 13:08:57 +0000 (13:08 +0000)]
mod_cache: We must ignore quoted-string values that appear in a
Cache-Control header. PR 50199.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070075 13f79535-47bb-0310-9956-ffa450edef68

13 years agorevert r1026746:
Stefan Fritsch [Sat, 12 Feb 2011 12:16:18 +0000 (12:16 +0000)]
revert r1026746:

    If an unknown Content-* header is received for a PUT request, we must not
    ignore it but reply with 501 per RFC 2616 9.6.

    PR: 42978

Vetoed by Roy T. Fielding:
http://mail-archives.apache.org/mod_mbox/httpd-dev/201102.mbox/%3C9A5A8B62-ED16-4BD3-97DA-8475026BB81D@gbiv.com%3E

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070061 13f79535-47bb-0310-9956-ffa450edef68

13 years agoReinstate comment.
Graham Leggett [Fri, 11 Feb 2011 20:30:04 +0000 (20:30 +0000)]
Reinstate comment.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1069947 13f79535-47bb-0310-9956-ffa450edef68

13 years agomod_cache: Respect s-maxage as described by RFC2616 14.9.3, which must
Graham Leggett [Fri, 11 Feb 2011 20:12:39 +0000 (20:12 +0000)]
mod_cache: Respect s-maxage as described by RFC2616 14.9.3, which must
take precedence if present. PR 35247.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1069942 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* Play safe if the notes table does not contain an SSL_connect_rv key.
Ruediger Pluem [Fri, 11 Feb 2011 12:50:31 +0000 (12:50 +0000)]
* Play safe if the notes table does not contain an SSL_connect_rv key.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1069785 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* modules/ssl/ssl_engine_pphrase.c (ssl_pphrase_Handle): Fix possible
Joe Orton [Fri, 11 Feb 2011 12:26:57 +0000 (12:26 +0000)]
* modules/ssl/ssl_engine_pphrase.c (ssl_pphrase_Handle): Fix possible
  startup failure in cases where multiple vhosts share the same
  "vhost-id" and private key file.  The cached-key case would
  previously cause an abrupt return from the function, which could
  prevent processing of configured keypairs for other vhosts.  There
  is no apparent reason to check for a "cache hit" against cached keys
  using *any* algorithm types; instead only check against a key with
  the matching type.

Submitted by: Masahiro Matsuya <matsuya redhat.com>, jorton

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1069772 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* modules/ssl/ssl_engine_pphrase.c (ssl_pphrase_Handle): Simplify to
Joe Orton [Fri, 11 Feb 2011 12:05:31 +0000 (12:05 +0000)]
* modules/ssl/ssl_engine_pphrase.c (ssl_pphrase_Handle): Simplify to
  calculate hash index only once per loop iteration; no (intended)
  functional change.  Add comments and tweak a log message.

* modules/ssl/ssl_private.h: Add comments.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1069765 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* modules/ssl/ssl_private.h: Clarify comment on modssl_pk_server_t.
Joe Orton [Fri, 11 Feb 2011 09:48:00 +0000 (09:48 +0000)]
* modules/ssl/ssl_private.h: Clarify comment on modssl_pk_server_t.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1069725 13f79535-47bb-0310-9956-ffa450edef68

13 years agomove function...
Jim Jagielski [Thu, 10 Feb 2011 13:29:53 +0000 (13:29 +0000)]
move function...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1069381 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUpdates.
Lucien Gentis [Wed, 9 Feb 2011 17:02:01 +0000 (17:02 +0000)]
Updates.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068975 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUgg... unbalanced workers *do* need a mutex as well (good catch Rüdiger!)
Jim Jagielski [Wed, 9 Feb 2011 13:20:09 +0000 (13:20 +0000)]
Ugg... unbalanced workers *do* need a mutex as well (good catch Rüdiger!)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068879 13f79535-47bb-0310-9956-ffa450edef68

13 years agotypo
Jim Jagielski [Wed, 9 Feb 2011 13:00:00 +0000 (13:00 +0000)]
typo

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068873 13f79535-47bb-0310-9956-ffa450edef68

13 years agoSquash error/warning about signed/unsigned comparison
Jim Jagielski [Wed, 9 Feb 2011 12:56:01 +0000 (12:56 +0000)]
Squash error/warning about signed/unsigned comparison

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068871 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* Fix syntax errors and a non existing variable.
Ruediger Pluem [Wed, 9 Feb 2011 08:21:36 +0000 (08:21 +0000)]
* Fix syntax errors and a non existing variable.

Submitted by: NormW <normw gknw.net>
Reviewed by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068784 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* Make module compile by fixing some typos.
Ruediger Pluem [Wed, 9 Feb 2011 08:03:40 +0000 (08:03 +0000)]
* Make module compile by fixing some typos.

PR: 50735
Submitted by: Mark Montague <mark catseye.org>
Reviewed by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068778 13f79535-47bb-0310-9956-ffa450edef68

13 years agoRPM spec file: Make the httpd init script consistent with the htcacheclean
Graham Leggett [Tue, 8 Feb 2011 22:51:31 +0000 (22:51 +0000)]
RPM spec file: Make the httpd init script consistent with the htcacheclean
init script. Multiple daemons can be started by creating symlinks to the
init script.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068660 13f79535-47bb-0310-9956-ffa450edef68

13 years agoRemove the thread mutex from the worker... it really should be
Jim Jagielski [Tue, 8 Feb 2011 21:08:10 +0000 (21:08 +0000)]
Remove the thread mutex from the worker... it really should be
in the balancer. Thus we have global and thread for the balancer.
Use global when updating the full, shm list of workers; use
thread when being local.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068581 13f79535-47bb-0310-9956-ffa450edef68

13 years agoExpose this as part of the API. That way, other code/modules
Jim Jagielski [Tue, 8 Feb 2011 13:59:36 +0000 (13:59 +0000)]
Expose this as part of the API. That way, other code/modules
which want to overload mod_proxy's trans phase can use it to
handle ProxyPass as well, without requiring monkeying
with conf->aliases...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068400 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* server/mpm/prefork/prefork.c (stop_listening, sig_term, restart):
Joe Orton [Tue, 8 Feb 2011 13:47:23 +0000 (13:47 +0000)]
* server/mpm/prefork/prefork.c (stop_listening, sig_term, restart):
  Update mpm_state in the signal handlers such that it is correct in
  children during a graceful stop/restart too.

PR: 41743
Submitted by: Andrew Punch <andrew.punch 247realmedia.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068389 13f79535-47bb-0310-9956-ffa450edef68

13 years agoRebuild transformations.
Rich Bowen [Tue, 8 Feb 2011 11:15:42 +0000 (11:15 +0000)]
Rebuild transformations.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068331 13f79535-47bb-0310-9956-ffa450edef68

13 years agoCustom, not Customer, error docs.
Rich Bowen [Tue, 8 Feb 2011 11:14:09 +0000 (11:14 +0000)]
Custom, not Customer, error docs.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068329 13f79535-47bb-0310-9956-ffa450edef68

13 years agoOnly persist if we want it to
Jim Jagielski [Mon, 7 Feb 2011 19:32:31 +0000 (19:32 +0000)]
Only persist if we want it to

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068072 13f79535-47bb-0310-9956-ffa450edef68

13 years agoOK, use faster, shared version... makes sense to persist this
Jim Jagielski [Mon, 7 Feb 2011 19:25:14 +0000 (19:25 +0000)]
OK, use faster, shared version... makes sense to persist this
info since it is aligned with the actual data itself.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068066 13f79535-47bb-0310-9956-ffa450edef68

13 years agoKeep track of how many workers we've used so far... no need
Jim Jagielski [Mon, 7 Feb 2011 17:15:04 +0000 (17:15 +0000)]
Keep track of how many workers we've used so far... no need
to provide field to add another if no slots exist.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068020 13f79535-47bb-0310-9956-ffa450edef68

13 years agoSave this for later to be done... recall that .free needs to
Jim Jagielski [Mon, 7 Feb 2011 17:15:02 +0000 (17:15 +0000)]
Save this for later to be done... recall that .free needs to
exist in shm...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068019 13f79535-47bb-0310-9956-ffa450edef68

13 years agoSlotmem now provides for the number of "free" slots
Jim Jagielski [Mon, 7 Feb 2011 17:14:59 +0000 (17:14 +0000)]
Slotmem now provides for the number of "free" slots
available.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1068018 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMutex around adding a new worker...
Jim Jagielski [Mon, 7 Feb 2011 15:25:09 +0000 (15:25 +0000)]
Mutex around adding a new worker...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067965 13f79535-47bb-0310-9956-ffa450edef68

13 years agotest_char.h is a dependency, not a source. This seems to fix the occasional
Stefan Fritsch [Sat, 5 Feb 2011 21:09:12 +0000 (21:09 +0000)]
test_char.h is a dependency, not a source. This seems to fix the occasional
"No rule to make target `server/test_char.h'" errors when doing a parallel
build.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067525 13f79535-47bb-0310-9956-ffa450edef68

13 years agorevert r1066944, r1067177 for now
Stefan Fritsch [Sat, 5 Feb 2011 19:02:33 +0000 (19:02 +0000)]
revert r1066944, r1067177 for now

breaks MacOS X and wherever this code will go, server/main.c does not seem to be the right place.
See
http://mail-archives.apache.org/mod_mbox/httpd-dev/201102.mbox/%3C01930193-8A3B-4635-9EB0-5EE31349E49C@jaguNET.com%3E

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067483 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUpdates.
Lucien Gentis [Sat, 5 Feb 2011 16:58:56 +0000 (16:58 +0000)]
Updates.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067467 13f79535-47bb-0310-9956-ffa450edef68

13 years agoLock around the time when we're mucking w/ balancers...
Jim Jagielski [Fri, 4 Feb 2011 20:34:47 +0000 (20:34 +0000)]
Lock around the time when we're mucking w/ balancers...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067276 13f79535-47bb-0310-9956-ffa450edef68

13 years agoHere we go... we can now, via balancer-manager, add new
Jim Jagielski [Fri, 4 Feb 2011 20:01:04 +0000 (20:01 +0000)]
Here we go... we can now, via balancer-manager, add new
workers to existing balancers. Still work to be done,
like error checking that we aren't trying to add more
than we can (right now, it fails, but it would be nice
to handle it nicer), disabling and *deleting* workers
we don't want anymore, the actual drain method, etc...
but this is some major goodness.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067269 13f79535-47bb-0310-9956-ffa450edef68

13 years agomight as well allow for the sticky session to be adjusted as well...
Jim Jagielski [Fri, 4 Feb 2011 16:11:15 +0000 (16:11 +0000)]
might as well allow for the sticky session to be adjusted as well...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067206 13f79535-47bb-0310-9956-ffa450edef68

13 years agoOops.... we need to adjust sticky, which is an array now
Jim Jagielski [Fri, 4 Feb 2011 16:11:12 +0000 (16:11 +0000)]
Oops.... we need to adjust sticky, which is an array now

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067205 13f79535-47bb-0310-9956-ffa450edef68

13 years agoupdate convmap
André Malo [Fri, 4 Feb 2011 15:11:14 +0000 (15:11 +0000)]
update convmap

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067189 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAnd yet more balancer params that can be changed at runtime via
Jim Jagielski [Fri, 4 Feb 2011 13:50:39 +0000 (13:50 +0000)]
And yet more balancer params that can be changed at runtime via
the b-m application...

next up, of course, is adding new workers ;)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067178 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUntil this is fixed to link in lresolv, exclude.
Jim Jagielski [Fri, 4 Feb 2011 13:24:39 +0000 (13:24 +0000)]
Until this is fixed to link in lresolv, exclude.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067177 13f79535-47bb-0310-9956-ffa450edef68

13 years agoReload resolv.conf on graceful restarts
Stefan Fritsch [Thu, 3 Feb 2011 20:20:02 +0000 (20:20 +0000)]
Reload resolv.conf on graceful restarts

PR: 50619
Submitted by: Matt Miller <m miller f5 com>, Stefan Fritsch

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066944 13f79535-47bb-0310-9956-ffa450edef68

13 years agoOptimize memory access pattern of ap_merge_per_dir_configs()
Stefan Fritsch [Thu, 3 Feb 2011 17:02:38 +0000 (17:02 +0000)]
Optimize memory access pattern of ap_merge_per_dir_configs()

According to Linux perf, this is twice as fast as the old loop.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066869 13f79535-47bb-0310-9956-ffa450edef68

13 years agoRaise DYNAMIC_MODULE_LIMIT to 256
Stefan Fritsch [Thu, 3 Feb 2011 16:51:28 +0000 (16:51 +0000)]
Raise DYNAMIC_MODULE_LIMIT to 256

discussed at
http://mail-archives.apache.org/mod_mbox/httpd-dev/201006.mbox/%3C4C268563.30006@rowe-clan.net%3E

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066864 13f79535-47bb-0310-9956-ffa450edef68

13 years agoNo need to pollute the whole namespace...
Jim Jagielski [Wed, 2 Feb 2011 21:25:34 +0000 (21:25 +0000)]
No need to pollute the whole namespace...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066631 13f79535-47bb-0310-9956-ffa450edef68

13 years agoStatus update
Igor Galić [Wed, 2 Feb 2011 21:23:41 +0000 (21:23 +0000)]
Status update

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066630 13f79535-47bb-0310-9956-ffa450edef68

13 years agoOptimize... create a struct to hold the worker status info
Jim Jagielski [Wed, 2 Feb 2011 20:17:22 +0000 (20:17 +0000)]
Optimize... create a struct to hold the worker status info
(need to align w/ set_params later on) and note when we
update timestamps

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066607 13f79535-47bb-0310-9956-ffa450edef68

13 years agoupdate transformations
Igor Galić [Wed, 2 Feb 2011 14:43:23 +0000 (14:43 +0000)]
update transformations

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066484 13f79535-47bb-0310-9956-ffa450edef68

13 years agoInstead of just enabling/disabling, we can now adjust
Jim Jagielski [Wed, 2 Feb 2011 14:39:48 +0000 (14:39 +0000)]
Instead of just enabling/disabling, we can now adjust
more useful worker status bits, such as whether hot stby, etc...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066482 13f79535-47bb-0310-9956-ffa450edef68

13 years agoDrBacchus sez fix-a-docs-bug
Nick Kew [Wed, 2 Feb 2011 12:07:58 +0000 (12:07 +0000)]
DrBacchus sez fix-a-docs-bug
PR 50396
Pedantry over description of qs-values.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066440 13f79535-47bb-0310-9956-ffa450edef68

13 years agoDrBacchus says Fix-a-docs-bug
Nick Kew [Wed, 2 Feb 2011 11:55:47 +0000 (11:55 +0000)]
DrBacchus says Fix-a-docs-bug
PR 50396
Historical reasons for using IP-based virtualhosting no longer deserve
to be featured in our docs.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066434 13f79535-47bb-0310-9956-ffa450edef68

13 years agotid 50632, specifying the default of proxy-interim-response
Igor Galić [Wed, 2 Feb 2011 10:50:07 +0000 (10:50 +0000)]
tid 50632, specifying the default of proxy-interim-response

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066408 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAgain, abstract out the worker status magic to it's handled
Jim Jagielski [Tue, 1 Feb 2011 19:07:02 +0000 (19:07 +0000)]
Again, abstract out the worker status magic to it's handled
by funcs...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066138 13f79535-47bb-0310-9956-ffa450edef68

13 years agobitfields should be unsigned
Jim Jagielski [Tue, 1 Feb 2011 18:14:37 +0000 (18:14 +0000)]
bitfields should be unsigned

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066112 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMove the setting of flags into a func... that way there is
Jim Jagielski [Tue, 1 Feb 2011 18:13:15 +0000 (18:13 +0000)]
Move the setting of flags into a func... that way there is
one place to maintain as the number of flags grow...

Since we are using just the bits, make unsigned.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066110 13f79535-47bb-0310-9956-ffa450edef68

13 years agoWe can now change lbmethod at runtime.
Jim Jagielski [Tue, 1 Feb 2011 16:00:01 +0000 (16:00 +0000)]
We can now change lbmethod at runtime.

Provide a stub for other balancer-related params to
be adjusted as well, like timeout, sticky, etc...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066076 13f79535-47bb-0310-9956-ffa450edef68

13 years agoForgot to encode accents in r1065768
Vincent Deffontaines [Mon, 31 Jan 2011 20:47:02 +0000 (20:47 +0000)]
Forgot to encode accents in r1065768

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065770 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAdding a french translation for expr.xml
Vincent Deffontaines [Mon, 31 Jan 2011 20:45:49 +0000 (20:45 +0000)]
Adding a french translation for expr.xml

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065768 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAdding a link to the wikipedia page describing BNF.
Vincent Deffontaines [Mon, 31 Jan 2011 20:39:33 +0000 (20:39 +0000)]
Adding a link to the wikipedia page describing BNF.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065758 13f79535-47bb-0310-9956-ffa450edef68

13 years agoA new mode that is maintainer + O0 (for better gdb)
Jim Jagielski [Mon, 31 Jan 2011 20:29:03 +0000 (20:29 +0000)]
A new mode that is maintainer + O0 (for better gdb)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065751 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMove the lbmethod to also allow it to be adjusted runtime
Jim Jagielski [Mon, 31 Jan 2011 20:29:01 +0000 (20:29 +0000)]
Move the lbmethod to also allow it to be adjusted runtime

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065750 13f79535-47bb-0310-9956-ffa450edef68

13 years agotuck away code that lets us ensure that the id is always
Jim Jagielski [Mon, 31 Jan 2011 20:28:57 +0000 (20:28 +0000)]
tuck away code that lets us ensure that the id is always
"unique"

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065749 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMove some "nice to be able to change" balancer stuff to shm
Jim Jagielski [Mon, 31 Jan 2011 20:28:52 +0000 (20:28 +0000)]
Move some "nice to be able to change" balancer stuff to shm

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065748 13f79535-47bb-0310-9956-ffa450edef68

13 years agoSetting missing LastChangedRevision to the latest "svn blame" revision I found.
Vincent Deffontaines [Mon, 31 Jan 2011 20:15:30 +0000 (20:15 +0000)]
Setting missing LastChangedRevision to the latest "svn blame" revision I found.
However the present [post] commit should override it...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065742 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUpdates.
Lucien Gentis [Sat, 29 Jan 2011 14:39:45 +0000 (14:39 +0000)]
Updates.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065023 13f79535-47bb-0310-9956-ffa450edef68

13 years agoRevert an old (~10yr) change to the fd Q; move back to
Jim Jagielski [Thu, 27 Jan 2011 19:34:38 +0000 (19:34 +0000)]
Revert an old (~10yr) change to the fd Q; move back to
FIFO rather than LIFO, for more consistent performance
so that older requests don't suffer

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1064269 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAdded mod_slotmem*.dsp files forgotten with commit r1063507.
Guenter Knauf [Wed, 26 Jan 2011 22:31:14 +0000 (22:31 +0000)]
Added mod_slotmem*.dsp files forgotten with commit r1063507.

Submitted by Gregg L. Smith - gregg AT apachehaus.com.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063902 13f79535-47bb-0310-9956-ffa450edef68

13 years agoxforms
Eric Covener [Wed, 26 Jan 2011 03:21:58 +0000 (03:21 +0000)]
xforms

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063589 13f79535-47bb-0310-9956-ffa450edef68

13 years agothe comparison string has been decoded for rewriterule comparison. PR50653
Eric Covener [Wed, 26 Jan 2011 03:20:24 +0000 (03:20 +0000)]
the comparison string has been decoded for rewriterule comparison.  PR50653

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063587 13f79535-47bb-0310-9956-ffa450edef68

13 years agopoint to where SERVER_NAME and SERVER_PORT get their
Eric Covener [Wed, 26 Jan 2011 03:12:56 +0000 (03:12 +0000)]
point to where SERVER_NAME and SERVER_PORT get their
values.  PR50655

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063585 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAdded slotmem* modules to Win32 build.
Guenter Knauf [Tue, 25 Jan 2011 23:05:46 +0000 (23:05 +0000)]
Added slotmem* modules to Win32 build.

Submitted by Gregg L. Smith - gregg AT apachehaus.com.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063507 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMake worker the default MPM for 2.3/2.4
Jim Jagielski [Tue, 25 Jan 2011 19:37:47 +0000 (19:37 +0000)]
Make worker the default MPM for 2.3/2.4

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063419 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUpdate with latest info
Jim Jagielski [Tue, 25 Jan 2011 19:29:52 +0000 (19:29 +0000)]
Update with latest info

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063414 13f79535-47bb-0310-9956-ffa450edef68

13 years agobreak some very long lines, no code change
Stefan Fritsch [Mon, 24 Jan 2011 22:12:24 +0000 (22:12 +0000)]
break some very long lines, no code change

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063016 13f79535-47bb-0310-9956-ffa450edef68

13 years agoupdate transforms
Stefan Fritsch [Mon, 24 Jan 2011 21:52:16 +0000 (21:52 +0000)]
update transforms

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063003 13f79535-47bb-0310-9956-ffa450edef68

13 years agofix typo
Stefan Fritsch [Mon, 24 Jan 2011 21:42:46 +0000 (21:42 +0000)]
fix typo

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1062995 13f79535-47bb-0310-9956-ffa450edef68

13 years agomod_session_crypto is not supported by a released APR. Mark as experimental
Stefan Fritsch [Mon, 24 Jan 2011 21:41:36 +0000 (21:41 +0000)]
mod_session_crypto is not supported by a released APR. Mark as experimental

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1062993 13f79535-47bb-0310-9956-ffa450edef68

13 years agoadjust spelling
Stefan Fritsch [Mon, 24 Jan 2011 21:38:25 +0000 (21:38 +0000)]
adjust spelling
mark mod_dialup as experimental

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1062991 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMark some modules/directives non-experimental:
Stefan Fritsch [Mon, 24 Jan 2011 21:30:03 +0000 (21:30 +0000)]
Mark some modules/directives non-experimental:
- BufferedLogs and mod_substitute have been around a long time
- mod_reqtimeout has stabilized as well

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1062989 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUpdates.
Lucien Gentis [Sun, 23 Jan 2011 15:14:31 +0000 (15:14 +0000)]
Updates.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1062450 13f79535-47bb-0310-9956-ffa450edef68

13 years agoRebuilding various recent changes.
Rich Bowen [Fri, 21 Jan 2011 18:20:51 +0000 (18:20 +0000)]
Rebuilding various recent changes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061947 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMkae gcc no longer silent when doing arith on void*...
Jim Jagielski [Fri, 21 Jan 2011 16:27:41 +0000 (16:27 +0000)]
Mkae gcc no longer silent when doing arith on void*...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061883 13f79535-47bb-0310-9956-ffa450edef68

13 years agoarith on void* is not good
Jim Jagielski [Fri, 21 Jan 2011 16:13:21 +0000 (16:13 +0000)]
arith on void* is not good

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061874 13f79535-47bb-0310-9956-ffa450edef68

13 years agoIgnore leading dots when looking for mime extensions
Stefan Fritsch [Fri, 21 Jan 2011 12:51:57 +0000 (12:51 +0000)]
Ignore leading dots when looking for mime extensions
PR 50434

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061791 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAdd more documentations for Define'd variables
Stefan Fritsch [Fri, 21 Jan 2011 11:32:13 +0000 (11:32 +0000)]
Add more documentations for Define'd variables

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061758 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMake ap_pstr2_alnum accept const char dest
Stefan Fritsch [Fri, 21 Jan 2011 09:03:52 +0000 (09:03 +0000)]
Make ap_pstr2_alnum accept const char dest

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061695 13f79535-47bb-0310-9956-ffa450edef68

13 years ago* Only unset if we have a table. This can happen if undefine occurs before define.
Ruediger Pluem [Fri, 21 Jan 2011 08:01:09 +0000 (08:01 +0000)]
* Only unset if we have a table. This can happen if undefine occurs before define.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061669 13f79535-47bb-0310-9956-ffa450edef68

13 years agoUpdate docs for changed Define syntax
Stefan Fritsch [Thu, 20 Jan 2011 19:17:38 +0000 (19:17 +0000)]
Update docs for changed Define syntax

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061468 13f79535-47bb-0310-9956-ffa450edef68

13 years agoAdd support to set variables with the 'Define' directive. Change
Stefan Fritsch [Thu, 20 Jan 2011 19:12:32 +0000 (19:12 +0000)]
Add support to set variables with the 'Define' directive. Change
ap_resolve_env() to look for variables defined in this way. This allows to use
the variables in the config using the ${VAR} syntax known from envvar
interpolation

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061465 13f79535-47bb-0310-9956-ffa450edef68

13 years agoMove ap_resolve_env to core.c, in preparation for adding mod_define-like
Stefan Fritsch [Thu, 20 Jan 2011 18:37:47 +0000 (18:37 +0000)]
Move ap_resolve_env to core.c, in preparation for adding mod_define-like
variable support.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061444 13f79535-47bb-0310-9956-ffa450edef68

13 years agoRebuild transformations.
Igor Galić [Thu, 20 Jan 2011 18:02:36 +0000 (18:02 +0000)]
Rebuild transformations.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061428 13f79535-47bb-0310-9956-ffa450edef68

13 years agoWeeding out some old references. Replacing w3.org/cgi with link to CGI RFC.
Igor Galić [Thu, 20 Jan 2011 17:57:53 +0000 (17:57 +0000)]
Weeding out some old references. Replacing w3.org/cgi with link to CGI RFC.
Replacing hoohoo.ncsa.uiuc.edu with links to CGI RFC. This fixes PR#50622

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061423 13f79535-47bb-0310-9956-ffa450edef68

13 years agoFix compile error
Stefan Fritsch [Wed, 19 Jan 2011 21:23:34 +0000 (21:23 +0000)]
Fix compile error

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1060996 13f79535-47bb-0310-9956-ffa450edef68

13 years agoPropagating r1060795 to the compiled doc
Vincent Deffontaines [Wed, 19 Jan 2011 14:40:44 +0000 (14:40 +0000)]
Propagating r1060795 to the compiled doc

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1060827 13f79535-47bb-0310-9956-ffa450edef68