ideas about 'ap_rputs'

2011-05-30 Thread Christophe JAILLET
stant strings length at compile time and avoid useless calls to 'strlen'. So, most of the time letting the compiler compute the length at compile time would be a win. This could be done easily by turning the function AP_DECLARE(int) ap_rputs(const char *str, request_rec *r) into a macro that would look like : #define ap_rputs(a, b) do { ap_rwrite((a), strlen(a), (b)) } while (0); I know that function are preferred to macro and that names of macro should be in uppercase by convention, but please give me a feed back if you think it could be a win. Best regards, Christophe Jaillet

Apache janitor ?

2011-06-08 Thread Christophe JAILLET
Hi, from time to time I prepare small patches to improve apache code source quality. These patches can be small speed up, removal of duplicated code, clean-up, formatting... But no functionnal change as I'm not an apache guru yet. This is more or less like what is done by the kernel janitors for l

Why 'apr_pstrdup' constant strings ?

2011-06-28 Thread Christophe JAILLET
Hi, in several places, we are making a apr_pstrdup on a *constant* string. I've found at least : - server/protocol.c - line 538 - server/protocol.c - line 615 - modules/proxy/proxy_util.c - line 546 - modules/http/http_request.c - line 200 - modules/generators/mod_cgid.c - line

[RFC] speedup some tests in httpd

2012-02-12 Thread Christophe JAILLET
ace. In ALL other cases, removing the first test is about 15% faster. I have spotted more or less 20 of these in the code and I could provide a patch in bugzilla to remove these useless tests if you think it is useful. Thanks for your feed back. Best regards, Christophe Jaillet

Re: [RFC] speedup some tests in httpd

2012-02-13 Thread Christophe JAILLET
https://issues.apache.org/bugzilla/show_bug.cgi?id=52656

Re: [DISCUSS] CMS site migration

2012-05-07 Thread Christophe JAILLET
First link should be : http://www.apache.org/dev/cms Le 07/05/2012 16:58, Joe Schaefer a écrit : See http://www.apache/org/dev/cms and http://www.apache.org/dev/cmsref for details on the CMS. - Original Message - From: Brian J. France To: dev@httpd.a

mod_cgid and accept

2012-07-15 Thread Christophe JAILLET
ocket/windows guru. Is there any chance for (https://issues.apache.org/bugzilla/show_bug.cgi?id=52476) to be related to it ? Best regards, Christophe Jaillet

Re: mod_cgid and accept

2012-07-15 Thread Christophe JAILLET
Le 15/07/2012 12:24, Tom Browder a écrit : On Sun, Jul 15, 2012 at 5:04 AM, Christophe JAILLET wrote: Hi, looking around for static analysis tools, I arrived on a commercial software that states that is has already found some mistakes in httpd. Christophe brings up a good point. Has the

Re: [ANNOUNCEMENT] Apache HTTP Server 2.4.3 Released

2012-08-21 Thread Christophe JAILLET
Hi, I just noted that http://httpd.apache.org/download.cgi#apache24 has been updated, but *not* the main page (http://httpd.apache.org) Best regards. Le 21/08/2012 13:55, Jim Jagielski a écrit : Apache HTTP Server 2.4.3 Released

Re: [ANNOUNCEMENT] Apache HTTP Server 2.4.3 Released

2012-08-21 Thread Christophe JAILLET
Le 21/08/2012 20:40, Christophe JAILLET a écrit : Hi, I just noted that http://httpd.apache.org/download.cgi#apache24 has been updated, but *not* the main page (http://httpd.apache.org) Best regards. Le 21/08/2012 13:55, Jim Jagielski a écrit : Apache HTTP Server 2.4.3

Re: Clang Checkers

2012-09-14 Thread Christophe JAILLET
Hi, here are 2 obvious fixes against apr. apr/strings/apr_snprintf.c |1 - apr/xml/apr_xml.c |2 +- 2 files changed, 1 insertion(+), 2 deletions(-) Best regards, CJ On 09/14/2012 08:10 PM, Igor Galić wrote: Hey folks, over at trafficserver we started looking into running

Re: Clang Checkers

2012-09-14 Thread Christophe JAILLET
Hi, this one remove a dead assignment and reduce the scope of a variable. mod_proxy_balancer.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Best regards, CJ On 09/14/2012 08:10 PM, Igor Galić wrote: Hey folks, over at trafficserver we started looking into running clang's che

Back port patch for bug 52377 to 2.2 branch ?

2012-10-01 Thread Christophe JAILLET
Hi, Bug 52377 is about a bad configuration of SSL port during install. --> https://issues.apache.org/bugzilla/show_bug.cgi?id=52377 This has been fixed on trunk and on 2.4. However, the report is about 2.2. So I think that this one line patch should also be back-ported to 2.2 branch in ord

Re: [Patch] Support for Fallbackresource disabled

2012-10-14 Thread Christophe JAILLET
Le 12/10/2012 10:35, Vincent Deffontaines a écrit : Greetings, While providing support on IRC, I noticed that FallbackResource lacks a 'turn-off' switch. Since it works in per dir config, it seems sane that it could be valuable to turn it off in chosen subdirs. This one liner patch adds support

Re: svn commit: r1397320 - /httpd/httpd/trunk/modules/dav/main/util.c

2012-10-14 Thread Christophe JAILLET
Le 14/10/2012 12:53, Graham Leggett a écrit : On 11 Oct 2012, at 11:27 PM, jaillet...@apache.org wrote: Author: jailletc36 Date: Thu Oct 11 21:27:18 2012 New Revision: 1397320 URL: http://svn.apache.org/viewvc?rev=1397320&view=rev Log: [Test] First try : remove extra ';' (Apologies if this wa

Question about errors in 'mpm_service_install' (server/mpm/winnt/service.c)

2012-10-15 Thread Christophe JAILLET
Hi, in the function 'mpm_service_install' in server/mpm/winnt/service.c, cppcheck complains on line 596 and line 608 about 'Same expression on both sides of '|'.' 596:ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_ERR,<--- Same expression on both sides of '|'. apr

Re: [patch] Fix cross-user symlink race condition vulnerability

2012-10-31 Thread Christophe JAILLET
ou please open a bug report on bugzilla (https://issues.apache.org/bugzilla/) so that your message and proposed patch does not get lost in this mailing list. Thanks in advance. Best regards, Christophe JAILLET

svn branch 2.4.x ?

2012-11-11 Thread Christophe JAILLET
Hi, where has gone branches/2.4.x ? CJ

Re: svn branch 2.4.x ?

2012-11-11 Thread Christophe JAILLET
httpd/httpd/branches/2.4.x On Nov 11, 2012, at 10:22 AM, Christophe JAILLET wrote: Hi, where has gone branches/2.4.x ? CJ

Re: Volunteers to drive an MSI build

2012-11-16 Thread Christophe JAILLET
Le 16/11/2012 21:21, Gregg Smith a écrit : Another 'something' is NSIS (Nullsoft) which has been picked up by others and is over at sourceforge. I used to use it a long time ago but had to give it up for Inno Setup because it was dropped by the original author. A nice thing about it is the use a

Re: svn commit: r1412278 - /httpd/httpd/trunk/modules/debugging/mod_dumpio.c

2012-11-22 Thread Christophe JAILLET
Le 22/11/2012 14:44, Eric Covener a écrit : On Wed, Nov 21, 2012 at 3:40 PM, wrote: Author: jailletc36 Date: Wed Nov 21 20:40:01 2012 New Revision: 1412278 URL: http://svn.apache.org/viewvc?rev=1412278&view=rev Log: mod_dumpio: Correctly log large messages + style issues PR 54179 Please sepa

Question about revision 1070179 (mod_cache) that has been reverted on 2.4.x but not on trunk

2012-12-04 Thread Christophe JAILLET
Hi, list. On trunk, we can find at revision 1070179 (http://svn.apache.org/viewvc?view=revision&sortby=date&revision=1070179) a patch which is about: mod_cache: When a request other than GET or HEAD arrives, we must invalidate existing cache entities as per RFC2616 13.10. PR 15868.

Re: svn commit: r1422549 - in /httpd/httpd/trunk: include/ap_mmn.h include/httpd.h server/util.c server/util_md5.c

2012-12-16 Thread Christophe JAILLET
Le 16/12/2012 12:49, s...@apache.org a écrit : +AP_DECLARE(void) ap_bin2hex(const void *src, apr_size_t srclen, char *dest) +{ +const unsigned char *in = src; +unsigned char *out = (unsigned char *)dest; +apr_size_t i; + +for (i = 0; i < srclen; i++) { +*out++ = c2x_table[

Re: ab: socket_timeout parameter "-s" (default: 30sec)

2012-12-17 Thread Christophe JAILLET
Le 16/12/2012 03:28, Guido Serra a écrit : Hi, I added a parameter to the utility Apache Benchmark (ab) to allow setting the socket timeout ...it is currently a hardcoded value at 30 seconds, and this is problematic on bad applications that have a slight percentage of requests going above that

Re: ab: socket_timeout parameter "-s" (default: 30sec)

2012-12-17 Thread Christophe JAILLET
Le 17/12/2012 12:45, Christophe JAILLET a écrit : Le 16/12/2012 03:28, Guido Serra a écrit : Hi, I added a parameter to the utility Apache Benchmark (ab) to allow setting the socket timeout ...it is currently a hardcoded value at 30 seconds, and this is problematic on bad applications that

Re: [VOTE] accept mod_macro as standard module in httpd

2013-01-05 Thread Christophe JAILLET
Le 03/01/2013 03:06, Eric Covener a écrit : I was preparing the IP clearance forms and noticed our original "vote" thread was more of a discussion. I wanted to record a formal vote here so I can link to it. Pending IP clearance... [+1] accept mod_macro as a standard module and responsibility fo

Potential NULL pointer deference in module/arch/netware/mod_nw_ssl.c

2013-01-25 Thread Christophe JAILLET
Hi, cppCheck complains about a potential NULL pointer deference in module/arch/netware/mod_nw_ssl.c In function 'ssl_io_filter_Upgrade' we have, line 1165 : if (r) { ... } else { ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server, APLOGNO(02131) ...

Mention mod_disk_cache --> mod_cache_disk in upgrading.html for 2.4 ?

2013-02-01 Thread Christophe JAILLET
Hi, looking at an old PR 39351 (https://issues.apache.org/bugzilla/show_bug.cgi?id=39351), I was searching for some information about the removal of mod_disk_cache from 2.4. My understanding is that mod_cache_disk replaced it, but couldn't find any information about it in the documentation.

Re: Question about memory allocation in 'substring_conf' (server/util.c)

2013-02-05 Thread Christophe JAILLET
Le 05/02/2013 21:58, Jeff Trawick a écrit : Changing that would be a huge memory usage improvement :). needs more study Not surprising, changing it has no impact on the result of 'top' on my development machine. Anyway, I'll propose a patch. BTW, is there a way to easily dump a memory

Re: Apache 2.4 adoption

2013-02-09 Thread Christophe JAILLET
Le 05/02/2013 23:44, William A. Rowe Jr. a écrit : I've found the following data summary very useful in terms of drill-down capability; http://w3techs.com/technologies/details/ws-apache/2.2/all http://w3techs.com/technologies/details/ws-apache/2.4/all while their breakdown/segmentation tabulati

Re: [RESULT: PASS] Re: [VOTE] Release libapreq2-2.15

2021-03-08 Thread Christophe JAILLET
Le 08/03/2021 à 18:00, Ruediger Pluem a écrit : On 3/8/21 5:40 PM, Steve Hay wrote: On Tue, 23 Feb 2021 at 10:20, Joe Orton wrote: On Mon, Feb 22, 2021 at 03:57:25PM +, Steve Hay wrote: On Fri, 13 Nov 2020 at 16:43, Joe Orton wrote: Thanks all for testing, the vote has passed: PMC

NOTICE: Intent to T&R on next Wednesday

2021-04-17 Thread Christophe JAILLET
dely spread in the coming days. Please also test and votes for backports for the proposals already waiting in STATUS. This will be my first release as a RM. I hope that everything will run smoothly :) -- Christophe Jaillet

Re: svn commit: r1885605 - in /httpd/httpd/branches/2.4.x: ./ include/ modules/proxy/

2021-04-18 Thread Christophe JAILLET
Le 17/01/2021 à 17:21, minf...@apache.org a écrit : Author: minfrin Date: Sun Jan 17 16:21:35 2021 New Revision: 1885605 URL: http://svn.apache.org/viewvc?rev=1885605&view=rev Log: Backport to v2.4: *) mod_proxy_http: handle upgrade/tunneling protocols. BZ 61616 is about

Re: svn commit: r1885605 - in /httpd/httpd/branches/2.4.x: ./ include/ modules/proxy/

2021-04-18 Thread Christophe JAILLET
Le 03/02/2021 à 09:24, Ruediger Pluem a écrit : On 2/2/21 4:18 PM, Yann Ylavic wrote: On Tue, Feb 2, 2021 at 10:32 AM Ruediger Pluem wrote: New Revision: 1885605 URL: http://svn.apache.org/viewvc?rev=1885605&view=rev [] +/* Yield if the output filters stack is full? This is to a

Re: svn commit: r1885605 - in /httpd/httpd/branches/2.4.x: ./ include/ modules/proxy/

2021-04-18 Thread Christophe JAILLET
Le 18/04/2021 à 19:45, Eric Covener a écrit : The last hunk of r1877558 seems to be missing in this backport. @@ -2180,6 +2165,9 @@ static int proxy_http_handler(request_re /* Step Five: Receive the Response... Fall thru to cleanup */ status = ap_proxy_http_process_respons

[VOTE] Release httpd-2.4.47

2021-04-22 Thread Christophe JAILLET
4 *httpd-2.4.47.tar.gz sha512: de4c80e1ddebe3286c234179fd01d4917f479f75a7fe958032c19a8f22546e95f31e3b50073844d09f20f54894e7d511bcd9fd2f1cd2b2c71b3a182d6e62bab3 *httpd-2.4.47.tar.gz The SVN tag is '2.4.47' at r1889091. -- Christophe JAILLET

Re: [VOTE] Release httpd-2.4.47

2021-04-28 Thread Christophe JAILLET
Le 22/04/2021 à 11:25, Christophe JAILLET a écrit : Hi, all;   Please find below the proposed release tarball and signatures: https://dist.apache.org/repos/dist/dev/httpd/ I would like to call a VOTE over the next few days to release this candidate tarball as 2.4.47: [X] +1: It's not

[RESULT - PASS] Release httpd-2.4.47

2021-04-28 Thread Christophe JAILLET
ll of you for your time and cycles for testing on all these different platforms and configurations. Christophe JAILLET

Re: [RESULT - PASS - aborted] Release httpd-2.4.47

2021-05-03 Thread Christophe JAILLET
Le 28/04/2021 à 15:22, Christophe JAILLET a écrit : Hi all, With 8 binding PMC +1 votes, 3 additional +1 votes from the community, and no -1 votes, I'm pleased to report that the vote has PASSED to release 2.4.47. I will begin the process of pushing to the distribution mirrors

NOTICE: Intent to T&R on Sunday May 16, 2021

2021-05-03 Thread Christophe JAILLET
release in March 2018, this 2.4.47 release will never be officially announced. In the hope of this issue being solved in the meantime, I plan a new T&R on Sunday May 16, 2021, forecasting for a 2.4.48 release on Sunday May 23 or Monday May 24. Best regards, Christophe JAILLET

Re: htcacheclean.c error when compiling with apr-1.6.x and apr-1.7.x

2021-05-04 Thread Christophe JAILLET
Le 04/05/2021 à 08:59, jean-frederic clere a écrit : Hi, I have the following: +++ /home/jfclere/APR-1.7.x/build-1/libtool --silent --mode=compile gcc  -g -O2 -pthread -std=c89 -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wpointe

Re: CHANGES and change entries

2021-05-10 Thread Christophe JAILLET
Le 10/05/2021 à 10:32, Ruediger Pluem a écrit : On 5/10/21 10:06 AM, Stefan Eissing wrote: Team, me is confused about the status of CHANGES and changes-entries. Could we clarify for everyone how things are supposed to work now? There was some back and forth in the past, the README.CHANGES sa

[VOTE] Release httpd-2.4.48

2021-05-17 Thread Christophe JAILLET
e *httpd-2.4.48.tar.gz sha512: 91980f757fc0dede8c6cbf54ed973f82a63098aa50d0fce15fe3537687b4ffbb48ed50cdb4ae14eb4a8703450f032daf73f4f3d5e2dd0f75721948e12a9c6dfb *httpd-2.4.48.tar.gz The SVN tag is '2.4.48' at r1889975. -- Christophe JAILLET

Re: svn commit: r1889978 - /httpd/httpd/branches/2.4.x/STATUS

2021-05-18 Thread Christophe JAILLET
Le 18/05/2021 à 09:59, Ruediger Pluem a écrit : On 5/17/21 11:39 PM, jaillet...@apache.org wrote: Author: jailletc36 Date: Mon May 17 21:39:50 2021 New Revision: 1889978 URL: http://svn.apache.org/viewvc?rev=1889978&view=rev Log: Fix French vs English date format. Modified: httpd/httpd/

Re: [VOTE] Release httpd-2.4.48

2021-05-19 Thread Christophe JAILLET
Le 18/05/2021 à 14:57, Giovanni Bechis a écrit : On 5/18/21 1:53 PM, Joe Orton wrote: On Tue, May 18, 2021 at 01:30:25PM +0200, Ruediger Pluem wrote: On 5/18/21 11:52 AM, Giovanni Bechis wrote: On 5/17/21 11:36 PM, Christophe JAILLET wrote: Hi, all;    Please find below the proposed

Re: [VOTE] Release httpd-2.4.48

2021-05-24 Thread Christophe JAILLET
Le 17/05/2021 à 23:36, Christophe JAILLET a écrit : Hi, all;    Please find below the proposed release tarball and signatures: https://dist.apache.org/repos/dist/dev/httpd/ I would like to call a VOTE over the next few days to release this candidate tarball as 2.4.48: [ ] +1: It'

[RESULT - PASS] Release httpd-2.4.48

2021-05-25 Thread Christophe JAILLET
these different platforms and configurations. Christophe JAILLET

Re: page https://httpd.apache.org/download.cgi says Stable Release - Latest Version:,, 2.4.46 (released 2020-08-07)

2021-05-26 Thread Christophe JAILLET
Le 26/05/2021 à 16:41, Dennis Clarke a écrit : Seen at https://httpd.apache.org/download.cgi Stable Release - Latest Version: 2.4.46 (released 2020-08-07) I just followed the url link at : https://dist.apache.org/repos/dist/dev/httpd/Announcement2.4.html Hi, Did you

Re: svn commit: r1890245 - in /httpd/httpd/branches/2.4.x: ./ docs/manual/mod/ include/ modules/http2/ server/

2021-05-27 Thread Christophe JAILLET
Hi, Nitpicking CJ Le 27/05/2021 à 15:08, ic...@apache.org a écrit : Author: icing Date: Thu May 27 13:08:21 2021 New Revision: 1890245 URL: http://svn.apache.org/viewvc?rev=1890245&view=rev Log: Merged r1734009,r1734231,r1734281,r1838055,r1838079,r1840229,r1876664,r1876674,r1876784,r1879078,

Re: [RESULT - PASS] Release httpd-2.4.48

2021-06-01 Thread Christophe JAILLET
sm. So our vulnerability listing ([2]) with some more details is not updated yet. I hope to be able to update it in the coming days. Most CVE fixed in this release are rated from moderate to low impact. Only one, CVE-2021-31618 is rated as important and could be exploited for some DoS. Christophe JA

Re: svn commit: r1890412 - /httpd/site/trunk/content/security/cvejsontohtml.py

2021-06-03 Thread Christophe JAILLET
Le 03/06/2021 à 08:31, jaillet...@apache.org a écrit : Author: jailletc36 Date: Thu Jun 3 06:31:44 2021 New Revision: 1890412 URL: http://svn.apache.org/viewvc?rev=1890412&view=rev Log: Use natural order sorting, so that 2.4.9 is after 2.4.10 (trick found on https://stackoverflow.com/questi

Re: vulnerabilities page vs change log

2021-06-04 Thread Christophe JAILLET
Le 04/06/2021 à 09:45, Steffen Land a écrit : Thanks Christophe for all the work,  nice process changes ! See a little one: - at https://httpd.apache.org/security/vulnerabilities_24.html I see under 2.4.48 the CVE 13938 and in the change log  under 2.4.47 - in changelog I see under 2.4.48

Re: vulnerabilities page vs change log

2021-06-06 Thread Christophe JAILLET
Le 04/06/2021 à 20:01, Christophe JAILLET a écrit : Le 04/06/2021 à 09:45, Steffen Land a écrit : Thanks Christophe for all the work,  nice process changes ! See a little one: - at https://httpd.apache.org/security/vulnerabilities_24.html I see under 2.4.48 the CVE 13938 and in the

Re: svn commit: r1890598 - in /httpd/site/trunk/content/security/json: CVE-2019-17567.json CVE-2020-13938.json CVE-2020-13950.json CVE-2020-35452.json CVE-2021-26690.json CVE-2021-26691.json CVE-2021-

2021-06-09 Thread Christophe JAILLET
Le 08/06/2021 à 13:42, m...@apache.org a écrit : Author: mjc Date: Tue Jun 8 11:42:36 2021 New Revision: 1890598 URL: http://svn.apache.org/viewvc?rev=1890598&view=rev Log: Fix the release date and version Modified: httpd/site/trunk/content/security/json/CVE-2019-17567.json httpd/sit

Re: migration of the HTTPD project website

2021-07-01 Thread Christophe JAILLET
my point of view, +1. CJ HTH, Dave On Jun 29, 2021, at 2:23 PM, Dave Fisher wrote: Hi - On Jun 29, 2021, at 1:17 PM, Marion & Christophe JAILLET wrote: Hi Dave, Thanks for having done it. You did faster and better than what I had started. Here are a few details spotted here

Re: svn commit: r1891477 - in /httpd/httpd/trunk: changes-entries/ap_proxy_sync_balancer.txt modules/proxy/proxy_util.c

2021-07-12 Thread Christophe JAILLET
Le 12/07/2021 à 12:32, yla...@apache.org a écrit : Author: ylavic Date: Mon Jul 12 10:32:21 2021 New Revision: 1891477 URL: http://svn.apache.org/viewvc?rev=1891477&view=rev Log: mod_proxy: Fix icomplete initialization of BalancerMember(s) from the manager. Clear the workers created in ap_proxy

Re: migration of the HTTPD project website

2021-07-16 Thread Christophe JAILLET
Le 02/07/2021 à 18:57, Dave Fisher a écrit : On Jul 1, 2021, at 11:40 PM, Ruediger Pluem wrote: On 7/1/21 10:49 PM, Christophe JAILLET wrote: Le 01/07/2021 à 18:37, Dave Fisher a écrit : I see that there is already a PR to fix the modules hyperlink. Should this be applied From my

Re: svn commit: r1892038 - /httpd/httpd/trunk/server/util.c

2021-08-07 Thread Christophe JAILLET
Hi, Le 06/08/2021 à 15:10, cove...@apache.org a écrit : Author: covener Date: Fri Aug 6 13:10:45 2021 New Revision: 1892038 URL: http://svn.apache.org/viewvc?rev=1892038&view=rev Log: fix int overflow in ap_timeout_parameter_parse signed integer overflow in ap_timeout_parameter_parse under fu

Re: svn commit: r1892038 - /httpd/httpd/trunk/server/util.c

2021-08-08 Thread Christophe JAILLET
Does this require a cast? On Sat, Aug 7, 2021 at 6:45 AM Eric Covener wrote: On Sat, Aug 7, 2021 at 3:00 AM Christophe JAILLET wrote: Hi, Le 06/08/2021 à 15:10, cove...@apache.org a écrit : Author: covener Date: Fri Aug 6 13:10:45 2021 New Revision: 1892038 URL: http://s

Re: svn commit: r1892038 - /httpd/httpd/trunk/server/util.c

2021-08-10 Thread Christophe JAILLET
, Aug 8, 2021 at 5:03 PM Christophe JAILLET wrote: Hi, attached, my proposal. (compile tested only, but you'll get the idea) It applies on top of current trunk (so after 1892038,1892063). I'm not sure that the "(check > APR_INT64_MAX || check < tout)" check in your

Re: release?

2021-08-30 Thread Christophe JAILLET
Le 30/08/2021 à 13:53, Eric Covener a écrit : On Mon, Aug 30, 2021 at 7:36 AM ste...@eissing.org wrote: In what state is our release handling? Given someone holding my hand, could I do it? Or is it better to look someone over the shoulder while he does it? If there is an over-the-shoulder s

Re: release?

2021-08-31 Thread Christophe JAILLET
Le 31/08/2021 à 20:25, Eric Covener a écrit : Should we think about reverting the recent mod_unique_id changes? It seems like that was noticed pretty quickly but I think the current problem is still not well understood. Meanwhile the original problem on the old codebase wasn't widely reported

Re: svn commit: r1893014 - in /httpd/httpd/trunk: changes-entries/event_maintenance_spawn_limit.txt server/mpm/event/event.c

2021-09-07 Thread Christophe JAILLET
Hi, maybe completely off-topic, but we have the same kind of code in worker.c. Just my 2c, CJ Le 07/09/2021 à 11:34, yla...@apache.org a écrit : Author: ylavic Date: Tue Sep 7 09:34:09 2021 New Revision: 1893014 URL: http://svn.apache.org/viewvc?rev=1893014&view=rev Log: mpm_event: Fix chil

Re: svn commit: r1893011 - /httpd/httpd/trunk/test/time-sem.c

2021-09-07 Thread Christophe JAILLET
Le 07/09/2021 à 10:52, yla...@apache.org a écrit : Author: ylavic Date: Tue Sep 7 08:52:23 2021 New Revision: 1893011 URL: http://svn.apache.org/viewvc?rev=1893011&view=rev Log: test/time-sem.c: unlock the accept mutex before exiting (error conditions). Modified: httpd/httpd/trunk/test/ti

Re: svn commit: r1892842 [9/24] - in /httpd/httpd/branches/2.4.x/docs/manual: ./ developer/ faq/ howto/ misc/ mod/ programs/ vhosts/

2021-09-07 Thread Christophe JAILLET
Le 03/09/2021 à 10:14, nil...@apache.org a écrit : Modified: httpd/httpd/branches/2.4.x/docs/manual/install.html.de URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/install.html.de?rev=1892842&r1=1892841&r2=1892842&view=diff ===

Re: project website update

2021-09-08 Thread Christophe JAILLET
Le 08/09/2021 à 12:13, ste...@eissing.org a écrit : Need help to figure out how out website updates now after the "move" (whatever that means). Formerly: - changes committed into https://svn.apache.org/repos/asf/httpd/site/trunk/content Changes committed in https://github.com/apache/httpd-si

Re: svn commit: r1893284 - /httpd/test/framework/trunk/README

2021-09-12 Thread Christophe JAILLET
Hi, I've also been looking at this README file today and I have a few questions:   - some of the explicitly named modules looks redundant with what is already in Bundle::ApacheTest   - Crypt::SSLeay looks spurious. It doesn't compile on my machine because of function name conflicts with my open

Re: [VOTE] Release httpd-2.4.49-rc1 as httpd-2.4.49

2021-09-13 Thread Christophe JAILLET
Le 10/09/2021 à 17:23, ste...@eissing.org a écrit : Hi, all; Please find below the proposed release tarball and signatures: https://dist.apache.org/repos/dist/dev/httpd/ I would like to call a VOTE over the next few days to release this candidate tarball httpd-2.4.49-rc1 as 2.4.49: [X] +1: I

Re: Broken: apache/httpd#1937 (trunk - 00e2ca5)

2021-09-18 Thread Christophe JAILLET
Le 17/09/2021 à 16:38, Travis CI a écrit : apache / httpd branch icontrunk build has failed Build #1937 was broken

Re: svn commit: r1893438 - in /httpd/test/framework/trunk/t/htdocs/modules/actions: action/dummy.txt script/dummy.txt

2021-09-19 Thread Christophe JAILLET
Le 19/09/2021 à 13:49, cove...@apache.org a écrit : Author: covener Date: Sun Sep 19 11:49:34 2021 New Revision: 1893438 URL: http://svn.apache.org/viewvc?rev=1893438&view=rev Log: followup to r1893389: avoid empty dirs Added: httpd/test/framework/trunk/t/htdocs/modules/actions/action/dum

Re: svn commit: r1893438 - in /httpd/test/framework/trunk/t/htdocs/modules/actions: action/dummy.txt script/dummy.txt

2021-09-19 Thread Christophe JAILLET
Le 19/09/2021 à 14:17, Eric Covener a écrit : On Sun, Sep 19, 2021 at 8:09 AM Christophe JAILLET wrote: Le 19/09/2021 à 13:49, cove...@apache.org a écrit : Author: covener Date: Sun Sep 19 11:49:34 2021 New Revision: 1893438 URL: http://svn.apache.org/viewvc?rev=1893438&view=rev

Re: svn commit: r1895774 - /httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

2021-12-10 Thread Christophe JAILLET
Le 10/12/2021 à 15:50, jor...@apache.org a écrit : Author: jorton Date: Fri Dec 10 14:50:19 2021 New Revision: 1895774 URL: http://svn.apache.org/viewvc?rev=1895774&view=rev Log: * modules/ssl/ssl_engine_io.c (bio_filter_in_ctrl): Remove debugging assert for unexpected control commands, ma

Re: [VOTE] Release httpd-2.4.52-rc1 as httpd-2.4.52

2021-12-17 Thread Christophe JAILLET
Le 16/12/2021 à 15:03, Stefan Eissing a écrit : Hi all, Please find below the proposed release tarball and signatures: https://dist.apache.org/repos/dist/dev/httpd/ I would like to call a VOTE over the next few days to release this candidate tarball httpd-2.4.52-rc1 as 2.4.52: [X] +1: It's no

Testing mod_tls

2021-12-19 Thread Christophe JAILLET
Hi, I've been able to build mod_tls Basically, I've done: sudo apt install cargo sudo apt install cbindgen git clone https://github.com/rustls/rustls-ffi.git git_rustls-ffi sudo make install I have: /usr/local/lib/libcrustls.a /usr/local/lib/librustls.a /usr/local/include/crustls.h /usr/local

Re: Testing mod_tls

2021-12-21 Thread Christophe JAILLET
Le 20/12/2021 à 09:58, Stefan Eissing a écrit : Am 19.12.2021 um 10:36 schrieb Christophe JAILLET : Hi, I've been able to build mod_tls Basically, I've done: sudo apt install cargo sudo apt install cbindgen git clone https://github.com/rustls/rustls-ffi.git git_rustls-ffi

Re: Testing mod_tls

2021-12-21 Thread Christophe JAILLET
Le 20/12/2021 à 09:58, Stefan Eissing a écrit : Am 19.12.2021 um 10:36 schrieb Christophe JAILLET : Hi, I've been able to build mod_tls Basically, I've done: sudo apt install cargo sudo apt install cbindgen git clone https://github.com/rustls/rustls-ffi.git git_rustls-ffi

ocsp.t failing

2021-12-25 Thread Christophe JAILLET
Hi, the last travis jobs have failed on trunk because of ocsp.t. Unless I missed something, the only change with previous successful build is r1896361: https://github.com/apache/httpd/commit/442b4b167f19e13df918402a7af28fe4a50c2730 I can't see any potential link. Any idea? BTW, ML don't r

Re: svn commit: r1896976 - /httpd/httpd/branches/2.4.x/STATUS

2022-01-17 Thread Christophe JAILLET
Le 17/01/2022 à 14:16, Ruediger Pluem a écrit : On 1/17/22 1:38 PM, Eric Covener wrote: On Mon, Jan 17, 2022 at 7:28 AM Ruediger Pluem wrote: On 1/16/22 10:35 PM, William A Rowe Jr wrote: 4 day ago, you all saw this. 6 years ago, you all started using this on trunk. Don't know what I ca

Re: svn commit: r1896976 - /httpd/httpd/branches/2.4.x/STATUS

2022-01-17 Thread Christophe JAILLET
Le 17/01/2022 à 13:27, Ruediger Pluem a écrit : On 1/16/22 10:35 PM, William A Rowe Jr wrote: 4 day ago, you all saw this. 6 years ago, you all started using this on trunk. Don't know what I can to do help this along and honor the library author's wishes for all of us to walk away from the de

Re: svn commit: r1897281 - in /httpd/httpd/trunk: CHANGES include/ap_mmn.h include/scoreboard.h modules/generators/mod_status.c modules/ssl/mod_ssl.c modules/ssl/ssl_engine_io.c server/mpm/event/event

2022-01-22 Thread Christophe JAILLET
Le 21/01/2022 à 01:09, minf...@apache.org a écrit : Author: minfrin Date: Fri Jan 21 00:09:24 2022 New Revision: 1897281 URL: http://svn.apache.org/viewvc?rev=1897281&view=rev Log: event: Add support for non blocking behaviour in the CONN_STATE_READ_REQUEST_LINE phase, in addition to the existin

Re: svn commit: r1897281 - in /httpd/httpd/trunk: CHANGES include/ap_mmn.h include/scoreboard.h modules/generators/mod_status.c modules/ssl/mod_ssl.c modules/ssl/ssl_engine_io.c server/mpm/event/event

2022-01-22 Thread Christophe JAILLET
Le 22/01/2022 à 14:01, Yann Ylavic a écrit : +} +else if (rv == APR_EAGAIN) { APR_STATUS_IS_EAGAIN(rv)? If it is likely the way to do, according to a quick grep "== APR_EAGAIN", their are a few places in event and http2 to check. CJ

Re: Fwd: FYI: change to travis-ci emailer could cause moderation headaches

2022-01-27 Thread Christophe JAILLET
Le 26/01/2022 à 14:58, Eric Covener a écrit : I noticed I stopped getting "Travis CI" emails for httpd around 10/21. But I see people still discussing CI failures, so I am a little confused. Maybe they are only seeing it in the context of PRs. For me, manual check of https://app.travis-ci.co

Re: PCRE2 compatibility

2022-02-14 Thread Christophe JAILLET
Le 14/02/2022 à 21:14, Doug Whitfield a écrit : Thanks Jeff, this is exactly what I am talking about! I see that there are some patches out that purport to fix this. Does anybody know if those work and if they are ever going to get merged since pcre is defunct? I saw references to some pcre

Re: PCRE2 compatibility

2022-02-14 Thread Christophe JAILLET
Le 14/02/2022 à 21:10, Jeff McKenna a écrit : Hi Doug, If by "incompatible" you mean to ask if one can point to PCRE2 with CMake with Apache 2.4.51 & build successfully, I can tell you that yes it is incompatible, I was not able to build 2.4.51 with PCRE2 through CMake, with Visual Studio 201

Re: opinion poll, stale issues

2022-02-16 Thread Christophe JAILLET
Le 16/02/2022 à 10:32, Stefan Eissing a écrit : How about we close stale issues on our bugzilla after a year without changes with WONTFIX We are sorry, but no one found the interest/time to work on this. ideally as an automated job somewhere? Kind Regards, Stefan Hi, I share Rüdiger point

Re: svn commit: r1898227 [1/3] - in /httpd/httpd/branches/2.4.x/docs/manual: expr.html.fr.utf8 mod/directives.html.fr.utf8 mod/mod_authnz_ldap.html.fr.utf8 mod/quickreference.html.fr.utf8

2022-02-19 Thread Christophe JAILLET
Le 19/02/2022 à 17:12, lgen...@apache.org a écrit : Author: lgentis Date: Sat Feb 19 16:12:53 2022 New Revision: 1898227 URL: http://svn.apache.org/viewvc?rev=1898227&view=rev Log: fr doc rebuild. Modified: httpd/httpd/branches/2.4.x/docs/manual/expr.html.fr.utf8 httpd/httpd/branches/

Re: svn commit: r1898227 [1/3] - in /httpd/httpd/branches/2.4.x/docs/manual: expr.html.fr.utf8 mod/directives.html.fr.utf8 mod/mod_authnz_ldap.html.fr.utf8 mod/quickreference.html.fr.utf8

2022-02-20 Thread Christophe JAILLET
Le 20/02/2022 à 15:23, Lucien Gentis a écrit : Hello, Sorry, it is my fault ! Hmmm, reading below, I would say that it is mine :( You are not the one who has back-ported the broken xml file without testing and generating the doc. So, apologies! I updated and committed mod_authnz_ldap.xml

Re: svn commit: r1900356 - in /httpd/httpd/trunk: changes-entries/pr66037.txt modules/http2/h2_util.c modules/http2/h2_util.h

2022-04-30 Thread Christophe JAILLET
Le 28/04/2022 à 12:41, ic...@apache.org a écrit : Author: icing Date: Thu Apr 28 10:41:48 2022 New Revision: 1900356 URL: http://svn.apache.org/viewvc?rev=1900356&view=rev Log: *) mod_http2: remove unused and insecure code. Fixes PR66037. Thanks to Ronald Crane (Zippenhop LLC) for repor

Re: svn commit: r1898962 - /httpd/httpd/trunk/modules/md/md_store_fs.c

2022-05-25 Thread Christophe JAILLET
Le 16/03/2022 à 09:28, ic...@apache.org a écrit : Author: icing Date: Wed Mar 16 08:28:27 2022 New Revision: 1898962 URL: http://svn.apache.org/viewvc?rev=1898962&view=rev Log: *) mod_md: fix compiler warning about NULL arg to a %s log. Fixes PR 65955. Modified: httpd/httpd/trunk/modul

apreq documentation

2022-08-28 Thread Christophe JAILLET
Hi, with the recent release of apreq 2.17, the documentation ([1]) looked a bit out dated. The main page speaks about 2.13! It was last generated with Doxygen 1.5.6 nearly 12 years ago. The link to the documentation can be found at ([2]). Tweaking things a bit (see my recent commits), and u

Re: apreq documentation

2022-09-03 Thread Christophe JAILLET
Le 28/08/2022 à 15:48, Christophe JAILLET a écrit : Hi, with the recent release of apreq 2.17, the documentation ([1]) looked a bit out dated. The main page speaks about 2.13! It was last generated with Doxygen 1.5.6 nearly 12 years ago. The link to the documentation can be found at ([2

Re: apreq documentation

2022-09-03 Thread Christophe JAILLET
Le 04/09/2022 à 08:18, Christophe JAILLET a écrit : I've commited the change yesterday on https://github.com/apache/httpd-site, but the site has not been updated (mail to the csv mailing list about the commit neither) I've contacted infra this morning about it. If s.o. has an id

Re: svn commit: r1904299 - /httpd/httpd/trunk/modules/http2/h2_workers.c

2022-09-30 Thread Christophe JAILLET
Le 27/09/2022 à 13:00, ic...@apache.org a écrit : Author: icing Date: Tue Sep 27 11:00:10 2022 New Revision: 1904299 URL: http://svn.apache.org/viewvc?rev=1904299&view=rev Log: *) mod_http2: use proper apr_time_t where it is due, no (int) casting. Modified: httpd/httpd/trunk/modules/ht

Re: Escaping double quotation marks in the error log

2022-10-15 Thread Christophe JAILLET
Le 05/10/2022 à 12:26, Rainer Jung a écrit : Hi there, I looked at our escaping functions for logs due to the need of doing JSON logging. In principle one can output JSON by using appropriate log format definitions in the httpd config. Most special characters in JSON are already properly esca

Re: svn commit: r1903744 - in /httpd/httpd/trunk: docs/manual/mod/mod_proxy_hcheck.xml modules/proxy/mod_proxy.c modules/proxy/mod_proxy.h modules/proxy/mod_proxy_hcheck.c

2022-10-16 Thread Christophe JAILLET
Le 28/08/2022 à 20:46, j...@apache.org a écrit : Author: jim Date: Sun Aug 28 18:46:21 2022 New Revision: 1903744 URL: http://svn.apache.org/viewvc?rev=1903744&view=rev Log: Allow for HTTP/1.1 or HTTP/1.0 protocol health checks Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_hcheck.x

Re: Define variable in modules

2022-10-20 Thread Christophe JAILLET
Le 20/10/2022 à 15:55, Nick Gearls a écrit : Hello, It would sometimes be very handy to be able to define a variable (like -D on command-line or "Define xxx" in the config) inside a module. This would, for instance, allow to have a config file based on a define from the module, knowing if the

Re: svn commit: r1795906 - in /httpd/httpd/branches/2.4.x: ./ CHANGES STATUS server/request.c

2017-05-24 Thread Christophe JAILLET
Hi, Looks like doc should be updated accordingly. Especially, the paragraph stating that: "For example, the current implementation does not contemplate the possibility of having a section inside another one (the inner will be ignored). " A compatibility note should be also added to tell th

New warning with gcc 7.1

2017-05-26 Thread Christophe JAILLET
Hi, when compiling with gcc 7.1, we have the following warning (in French): util_expr_eval.c: Dans la fonction « ap_expr_eval_re_backref »: util_expr_eval.c:199:63: warning: comparaison entre un pointeur et la constante caractère zéro [-Wpointer-compare] if (!ctx->re_pmatch || !ctx->re_so

Re: WatchdogInterval

2017-06-21 Thread Christophe JAILLET
Le 21/06/2017 à 14:19, Jim Jagielski a écrit : This is weird... At least on my system, if I set WatchdogInterval to *anything*, httpd will refuse to start up. Even if I set it to the default. It's like the mere existence of the directive in the config file is enough to stop it. WTF? Works for

Re: svn commit: r1805630 [1/30] - in /httpd/httpd/trunk/docs/manual: ./ mod/

2017-08-21 Thread Christophe JAILLET
Hi, Surprised by the size of the update for just a Few french xml files updated, I've looked randomly in the updates done. All files I've checked have the paragraph describing the directives in English instead of French. The other parts of the document (i.e. non-directive paragraph) are still

  1   2   3   4   5   6   >