Re: check for RAND_egd at configure time

2015-04-17 Thread Kaspar Brand
On 16.04.2015 22:57, Stefan Sperling wrote: On Wed, Apr 15, 2015 at 08:43:04PM +0200, Stefan Sperling wrote: LibreSSL does not provide the RAND_egd() function. This patch adds a configure check to allow building mod_ssl with LibreSSL. Updated version following Kaspar Brand's suggestion to

Re: svn commit: r1585609 - /httpd/httpd/trunk/modules/aaa/mod_authz_core.c

2015-04-17 Thread Yann Ylavic
On Tue, Apr 8, 2014 at 12:38 AM, bre...@apache.org wrote: Author: breser Date: Mon Apr 7 22:38:53 2014 New Revision: 1585609 URL: http://svn.apache.org/r1585609 Log: Allow Require expr to work when the expression is quoted. For example as appears in our documentation: Require expr

Re: Extending mod_authz_dbd

2015-04-17 Thread Jose Kahan
Hello Graham, Thanks for your feedback. It all makes sense to me. Following your reasoning, the only directive that will have i to stay as is for backwards compatibility will be require dbd-group, as it expects either no parameter or the value the query will return. I had initially thought of

Re: svn commit: r1585609 - /httpd/httpd/trunk/modules/aaa/mod_authz_core.c

2015-04-17 Thread Yann Ylavic
On Fri, Apr 17, 2015 at 11:54 AM, Yann Ylavic ylavic@gmail.com wrote: How about handling the case in the Require directive parser itself (add_authz_provider)? Or even maybe in the expr parser itself: Index: server/util_expr_eval.c

ap_getword_conf() and badly quoted strings

2015-04-17 Thread Yann Ylavic
Hi, currently ap_getword_conf() considers a word is quoted when (and only when) it starts with a quote, regardless of this word ending (or not) with the same quote. That is, eg., ap_getword_conf(\) == or ap_getword_conf(\whatever \\\badly\\\ quoted) == whatever \badly\ quoted. I wonder if it

Re: [PATCH] mod_log_config: Allow logging using errorlog provider

2015-04-17 Thread Jan Kaluža
On 04/07/2015 11:47 AM, Jan Kaluža wrote: Hi, we have ap_errorlog_provider in the trunk for some time. I was thinking about extending it to mod_log_config, so CustomLog/TransferLog would work with any module providing error_log logging ability like mod_syslog or mod_journald. Attached patch

Re: [users@httpd] Weird connection issues with mod_proxy_wstunnel

2015-04-17 Thread Yann Ylavic
Follow up to [1] based on users@ experience... On Fri, Apr 17, 2015 at 3:38 PM, Marc Hörsken i...@marc-hoersken.de wrote: I just figured out the configuration issue causing my problem. Original configuration mod_proxy_wstunnel with SwampDragon: ProxyPass /data/ ws://127.0.0.1:9001/data/

Re: svn commit: r1585609 - /httpd/httpd/trunk/modules/aaa/mod_authz_core.c

2015-04-17 Thread Christophe JAILLET
Hi, I would +1 for this solution which is, IMHO, much better. However, changing the parser itself would require checking the potential impact as it is used in many places. CJ Le 17/04/2015 13:15, Yann Ylavic a écrit : On Fri, Apr 17, 2015 at 11:54 AM, Yann Ylavic ylavic@gmail.com wrote:

Re: check for RAND_egd at configure time

2015-04-17 Thread Stefan Sperling
On Fri, Apr 17, 2015 at 07:02:21AM +0200, Kaspar Brand wrote: I was actually thinking about Index: acinclude.m4 === --- acinclude.m4(revision 1673835) +++ acinclude.m4(working copy) @@ -594,7 +594,7 @@

Does Apache httpd server dynamically generate just-in-time (JIT) compiled code?

2015-04-17 Thread Yue Chen
Hi, In some OS's, the network stack would compile packet filters to the native code, like the Berkeley Packet Filter (BPF). Would Apache httpd server also do this? In httpd, what's the usage of function ``ap_core_input_filter'', and does this function generate JIT code? If it does, will the

Re: Does Apache httpd server dynamically generate just-in-time (JIT) compiled code?

2015-04-17 Thread Reindl Harald
Am 17.04.2015 um 23:29 schrieb Yue Chen: Hi, In some OS's, the network stack would compile packet filters to the native code, like the Berkeley Packet Filter (BPF) apache and packet filter are completly different things at completly different layers signature.asc Description: OpenPGP

Question about some examples in the doc

2015-04-17 Thread Christophe JAILLET
Hi, looking at comment http://httpd.apache.org/docs/current/en/mod/mod_authn_core.html#comment_751, I think that what is proposed is not enough and that turning: Order deny,allow Allow from all into Require all granted is not correct. Require all granted would bypass the Require

Re: ap_getword_conf() and badly quoted strings

2015-04-17 Thread William A Rowe Jr
I think in trunk we should properly bail if the same quote char does not occur as termination. I don't think we should second-guess the admin's intent. On Fri, Apr 17, 2015 at 6:43 AM, Yann Ylavic ylavic@gmail.com wrote: Hi, currently ap_getword_conf() considers a word is quoted when