cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp12_worker.c jk_ajp13_worker.c jk_ajp14_worker.c jk_ajp_common.c jk_ajp_common.h jk_lb_worker.c jk_service.h jk_worker.c jk_worker.h

2005-04-24 Thread mturk
mturk 2005/04/24 02:54:47 Modified:jk/native/common jk_ajp12_worker.c jk_ajp13_worker.c jk_ajp14_worker.c jk_ajp_common.c jk_ajp_common.h jk_lb_worker.c jk_service.h jk_worker.c jk_worker.h Log: Added wc_maintain, that will recycle

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp12_worker.c jk_ajp12_worker.h jk_ajp13_worker.c jk_ajp13_worker.h jk_ajp14_worker.c jk_ajp14_worker.h jk_jni_worker.c jk_jni_worker.h jk_lb_worker.c jk_lb_worker.h jk_service.h jk_status.c jk_status.h jk_worker.c jk_worker_list.h

2005-02-15 Thread mturk
mturk 2005/02/15 00:52:54 Modified:jk/native/common jk_ajp12_worker.c jk_ajp12_worker.h jk_ajp13_worker.c jk_ajp13_worker.h jk_ajp14_worker.c jk_ajp14_worker.h jk_jni_worker.c jk_jni_worker.h jk_lb_worker.c

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c jk_ajp14.h jk_ajp14_worker.c jk_ajp_common.c

2005-02-06 Thread mturk
mturk 2005/02/06 05:45:11 Modified:jk/native/common jk_ajp13_worker.c jk_ajp14.h jk_ajp14_worker.c jk_ajp_common.c Log: Remove unneeded strdup's by changing some properties to const char.. Revision ChangesPath 1.23 +2 -10 ja

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c jk_ajp14.c jk_ajp14_worker.c jk_ajp_common.c jk_jni_worker.c jk_lb_worker.c

2004-11-26 Thread mturk
mturk 2004/11/26 08:59:52 Modified:jk/native/common jk_ajp13_worker.c jk_ajp14.c jk_ajp14_worker.c jk_ajp_common.c jk_jni_worker.c jk_lb_worker.c Log: Use calloc instead malloc for initalizing stucts, so we can use default zeros

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp12_worker.c jk_ajp13_worker.c jk_ajp14_worker.c jk_jni_worker.c jk_lb_worker.c

2004-11-19 Thread mturk
mturk 2004/11/19 04:58:18 Modified:jk/native/common jk_ajp12_worker.c jk_ajp13_worker.c jk_ajp14_worker.c jk_jni_worker.c jk_lb_worker.c Log: Fix retries for worker adding initialization to 'init'. Revision ChangesPath 1.16

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-11 Thread Cindy Brzozowski
TAKE MY EMAIL OFF OF YOUR LIST. THANK YOU Costin Manolache <[EMAIL PROTECTED]> wrote:Mladen Turk wrote: > jean-frederic clere wrote: > >> Mladen Turk wrote: >> >>> Costin Manolache wrote: >>> Are you joking :-) ? >>> >>> >>> If we can not alloc couple of bytes from the system, then the >>> e

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-11 Thread mturk
mturk 2004/11/11 09:28:59 Modified:jk/native/common jk_ajp13_worker.c Log: Add new trace macros and clean up some log messages. Revision ChangesPath 1.19 +23 -14 jakarta-tomcat-connectors/jk/native/common/jk_ajp13_worker.c Index: jk_ajp13_worker.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-11 Thread Costin Manolache
Mladen Turk wrote: jean-frederic clere wrote: Mladen Turk wrote: Costin Manolache wrote: Are you joking :-) ? If we can not alloc couple of bytes from the system, then the entire system is unstable. Or that the process that makes the malloc() has reached a configurable limit of the amount of mem

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-10 Thread Mladen Turk
jean-frederic clere wrote: Mladen Turk wrote: Costin Manolache wrote: Are you joking :-) ? If we can not alloc couple of bytes from the system, then the entire system is unstable. Or that the process that makes the malloc() has reached a configurable limit of the amount of memory it is allowed to

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-10 Thread jean-frederic clere
Mladen Turk wrote: Costin Manolache wrote: Mladen Turk wrote: David Rees wrote: Are you sure it's a good idea to wait until it crashes rather than fail in a controlled method? How much overhead is there to check aw->name for NULL? Can't be much... Yes I am. Look, if the system can not alloc 10

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-10 Thread Mladen Turk
Costin Manolache wrote: Mladen Turk wrote: David Rees wrote: Are you sure it's a good idea to wait until it crashes rather than fail in a controlled method? How much overhead is there to check aw->name for NULL? Can't be much... Yes I am. Look, if the system can not alloc 1000 bytes of memory

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-10 Thread Costin Manolache
Mladen Turk wrote: David Rees wrote: Are you sure it's a good idea to wait until it crashes rather than fail in a controlled method? How much overhead is there to check aw->name for NULL? Can't be much... Yes I am. Look, if the system can not alloc 1000 bytes of memory what's the purpose to co

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-10 Thread Mladen Turk
David Rees wrote: Are you sure it's a good idea to wait until it crashes rather than fail in a controlled method? How much overhead is there to check aw->name for NULL? Can't be much... Yes I am. Look, if the system can not alloc 1000 bytes of memory what's the purpose to continue? Mt. ---

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-10 Thread David Rees
[EMAIL PROTECTED] wrote, On 11/10/2004 7:24 AM: mturk 2004/11/10 07:24:17 Modified:jk/native/common jk_ajp13_worker.c Log: Use new TRACE/DEBUG logging. Also skip checking for memory allocation. If we can not allocate enough memory it's better to core dump then try to con

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13.c jk_ajp13_worker.c jk_ajp14.c jk_ajp14.h jk_ajp_common.h jk_connect.c jk_global.h jk_lb_worker.c jk_logger.h jk_uri_worker_map.c jk_util.h jk_worker.c Makefile.in

2004-11-10 Thread mturk
mturk 2004/11/10 08:36:48 Modified:jk/native/common jk_ajp13.c jk_ajp13_worker.c jk_ajp14.c jk_ajp14.h jk_ajp_common.h jk_connect.c jk_global.h jk_lb_worker.c jk_logger.h jk_uri_worker_map.c jk_util.h jk_worker.c

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c jk_ajp14.c jk_logger.h

2004-11-10 Thread mturk
mturk 2004/11/10 07:47:56 Modified:jk/native/common jk_ajp13_worker.c jk_ajp14.c jk_logger.h Log: Use new TRACE macros. Revision ChangesPath 1.17 +6 -6 jakarta-tomcat-connectors/jk/native/common/jk_ajp13_worker.c Index: jk_ajp13_worker.c

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13_worker.c

2004-11-10 Thread mturk
mturk 2004/11/10 07:24:17 Modified:jk/native/common jk_ajp13_worker.c Log: Use new TRACE/DEBUG logging. Also skip checking for memory allocation. If we can not allocate enough memory it's better to core dump then try to continue. At some point we'll core dump

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp12_worker.c jk_ajp13.c jk_ajp13_worker.c jk_ajp14.c jk_ajp14_worker.c jk_ajp_common.c jk_connect.c jk_context.c jk_jni_worker.c jk_lb_worker.c jk_map.c jk_md5.c jk_msg_buff.c jk_nwmain.c jk_pool.c jk_sockbuf.c jk_uri_worker_map.c jk_util.c jk_worker.c jk_ajp12_worker.h jk_ajp13.h jk_ajp13_worker.h jk_ajp14.h jk_ajp14_worker.h jk_ajp_common.h jk_connect.h jk_context.h jk_global.h jk_jni_worker.h jk_lb_worker.h jk_logger.h jk_map.h jk_md5.h jk_msg_buff.h jk_mt.h jk_pool.h jk_service.h jk_sockbuf.h jk_uri_worker_map.h jk_util.h jk_version.h jk_worker.h jk_worker_list.h

2004-10-08 Thread mturk
mturk 2004/10/08 00:50:41 Modified:jk/native/common jk_ajp12_worker.c jk_ajp13.c jk_ajp13_worker.c jk_ajp14.c jk_ajp14_worker.c jk_ajp_common.c jk_connect.c jk_context.c jk_jni_worker.c jk_lb_worker.c jk_map.c

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp13.c jk_ajp13.h jk_ajp13_worker.c jk_ajp13_worker.h jk_ajp14_worker.h jk_jni_worker.h jk_lb_worker.h jk_worker_list.h

2001-12-04 Thread costin
costin 01/12/04 11:48:41 Added: jk/native/common jk_ajp13.c jk_ajp13.h jk_ajp13_worker.c jk_ajp13_worker.h jk_ajp14_worker.h jk_jni_worker.h jk_lb_worker.h jk_worker_list.h Log: Roll back. Revision ChangesPath 1.6

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_registry.c jk_ajp13_worker.c

2001-11-26 Thread costin
costin 01/11/26 09:08:17 Modified:jk/native/common jk_registry.c Removed: jk/native/common jk_ajp13_worker.c Log: Use jk_ajp14_worker.c for both ajp13 and ajp14 protocol types. The code will work fine with any - if no login is specified we'll use only the &

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp_common.h jk_ajp_common.c jk_ajp14_worker.c jk_ajp14.h jk_ajp13_worker.c jk_ajp13.c jk_ajp13.h

2001-11-20 Thread costin
costin 01/11/20 08:58:47 Modified:jk/native/common jk_ajp_common.h jk_ajp_common.c jk_ajp14_worker.c jk_ajp14.h jk_ajp13_worker.c Removed: jk/native/common jk_ajp13.c jk_ajp13.h Log: Use the same header for ajp13 and ajp14. Move the remaining '

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_worker.c jk_registry.c jk_ajp14_worker.c jk_ajp13_worker.c

2001-11-16 Thread costin
costin 01/11/16 14:59:06 Modified:jk/native/common jk_worker.c jk_registry.c jk_ajp14_worker.c jk_ajp13_worker.c Log: Minor changes ( remove unused imports, add socket channel to the registry ) Revision ChangesPath 1.9 +2 -2 jakarta

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-09-14 Thread nacho
nacho 01/09/14 20:06:43 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: Problems with CRLF's Revision ChangesPath 1.13 +37 -37jakarta-tomcat/src/native/mod_jk/common/jk_ajp13_worker.c Index: jk_ajp13_wor

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-09-10 Thread keith
keith 01/09/10 14:43:36 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: Corner case for chunked encoding: if the chunk sizes and buffers fell such that the buffer was nearly full and the chunk size digits were too numerous to fit in the remaining space, the

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-08-23 Thread hgomez
hgomez 01/08/23 08:41:20 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: Handle client Browser Stop button Submitted by: William Barker <[EMAIL PROTECTED]> Revision ChangesPath 1.10 +13 -3 jakarta-tomcat/src/native/mod_jk/common/jk_ajp13_wo

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-07-18 Thread mmanders
mmanders01/07/18 14:36:35 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: This fixes a problem with the new recovery handling in ajp13. The problem occurs when the user requests a page and presses stop before it is all back, and the protocol retries the request to the

cvs commit: jakarta-tomcat/src/native/jk jk_ajp13_worker.c

2001-06-19 Thread mmanders
mmanders01/06/19 15:46:13 Modified:src/native/jk Tag: tomcat_32 jk_ajp13_worker.c Log: Fixed a memory leak. Revision ChangesPath No revision No revision 1.3.2.3 +2 -1 jakarta-tomcat/src/native/jk/Attic

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp12_worker.c jk_ajp13_worker.c jk_jni_worker.c jk_lb_worker.c jk_service.h jk_worker.c jk_worker.h

2001-06-11 Thread hgomez
hgomez 01/06/11 23:26:25 Modified:jk/native/common jk_ajp12_worker.c jk_ajp13_worker.c jk_jni_worker.c jk_lb_worker.c jk_service.h jk_worker.c jk_worker.h Log: init/validate methods of worker get now a copy of worker_env (autoconf

cvs commit: jakarta-tomcat-connectors/jk/src/native/common jk_ajp13_worker.c jk_ajp13_worker.h

2001-06-07 Thread hgomez
hgomez 01/06/07 07:33:07 Modified:jk/src/native/common jk_ajp13_worker.c jk_ajp13_worker.h Log: ajp13_worker also on the Diet. code is shared with ajp14 and live in ajp_common :=) Revision ChangesPath 1.4 +25 -683 jakarta-tomcat-connectors/jk/src/native

cvs commit: jakarta-tomcat-connectors/jk/src/native/common jk_ajp13_worker.c

2001-06-01 Thread hgomez
hgomez 01/06/01 02:59:47 Modified:jk/src/native/common jk_ajp13_worker.c Log: Memory leaks fixes from Mike Anderson Code cleanup (who still use 80 cols today ?) Revision ChangesPath 1.3 +32 -68jakarta-tomcat-connectors/jk/src/native/common/jk_ajp13_worker.c

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-06-01 Thread hgomez
hgomez 01/06/01 01:41:16 Modified:src/native/mod_jk/apache1.3 mod_jk.c src/native/mod_jk/common jk_ajp13_worker.c Log: Fix memory leaks when multiple conf structures are allocated and not desallocated Submitted by: Mike Anderson <[EMAIL PROTECTED]> Re

cvs commit: jakarta-tomcat-connectors/jk/src/native/common jk_ajp13.h jk_ajp13_worker.c jk_ajp13_worker.h

2001-05-18 Thread hgomez
hgomez 01/05/18 09:45:08 Modified:jk/src/native/common jk_ajp13.h jk_ajp13_worker.c jk_ajp13_worker.h Log: Initial works to let ajp14 use ajp13 functions (no OO here :) Revision ChangesPath 1.2 +15 -1 jakarta-tomcat-connectors/jk/src

cvs commit: jakarta-tomcat-connectors/jk/src/native/common jk_ajp13_worker.c jk_ajp13_worker.h

2001-05-14 Thread hgomez
hgomez 01/05/14 02:33:13 Added: jk/src/native/common jk_ajp13_worker.c jk_ajp13_worker.h Log: ajp13 worker stuff Revision ChangesPath 1.1 jakarta-tomcat-connectors/jk/src/native/common/jk_ajp13_worker.c Index: jk_ajp13_worker.c

cvs commit: jakarta-tomcat/proposals/web-connector/native/common jk_ajp13.c jk_ajp13.h jk_ajp13_worker.c jk_ajp13_worker.h

2001-05-03 Thread hgomez
hgomez 01/05/03 06:59:57 Added: proposals/web-connector/native/common jk_ajp13.c jk_ajp13.h jk_ajp13_worker.c jk_ajp13_worker.h Log: ajp13 protocol handling Revision ChangesPath 1.1 jakarta-tomcat/proposals/web-connector

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-04-19 Thread hgomez
hgomez 01/04/19 14:26:44 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: The previous patch to solve the Tomcat restart problem corrected only GET method. This one add POST method support. Revision ChangesPath 1.7 +82 -40jakarta-tomcat/src/native

RE: jk_ajp13_worker.c

2001-03-27 Thread GOMEZ Henri
ay, March 28, 2001 12:28 AM >To: [EMAIL PROTECTED] >Subject: Re: jk_ajp13_worker.c > > >I would say go for it. It's a hotly desired feature, so >hopefully it will >see some good testing. > >Nice work, >-Dan > >GOMEZ Henri wrote: >> >> Could I

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-03-27 Thread hgomez
hgomez 01/03/27 14:42:04 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: The long awaited :) correction to tomcat restart problem. No need to restart apache now Will need a little adjustement, ie instead of 3 fixed loop try to connect 2 * times the numbers of

RE: jk_ajp13_worker.c

2001-03-27 Thread GOMEZ Henri
I commit NOW :-) "Entre truands, les bénéfices, ça se partage, la réclusion, ça s'additionne." -- Michel Audiard >-Original Message- >From: Dan Milstein [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, March 28, 2001 12:28 AM >To: [EMAIL PROTECTED] >Subject

Re: jk_ajp13_worker.c

2001-03-27 Thread Dan Milstein
I would say go for it. It's a hotly desired feature, so hopefully it will see some good testing. Nice work, -Dan GOMEZ Henri wrote: > > Could I commit the latest jk_ajp13_worker.c I send to list ? > > It works fine for more than 1 week... -- Dan Milstein // [EMAIL PROTECTED]

jk_ajp13_worker.c

2001-03-27 Thread GOMEZ Henri
Could I commit the latest jk_ajp13_worker.c I send to list ? It works fine for more than 1 week...

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-03-06 Thread danmil
danmil 01/03/06 12:22:23 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: Fixed a few typos in some of the logging messages Revision ChangesPath 1.5 +6 -6 jakarta-tomcat/src/native/mod_jk/common/jk_ajp13_worker.c Index: jk_ajp13_worker.c

RE: cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c jk_service.h jk_util.c

2001-02-02 Thread GOMEZ Henri
I'm working on mod_jk for Apache 2.0 and I'll add the necessary You could find attached a pre-tested mod_jk.c for Apache 2.0 Regards mod_jk.c - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c jk_service.h jk_util.c

2001-02-02 Thread keith
keith 01/02/02 09:29:09 Modified:src/native/mod_jk/apache1.3 mod_jk.c src/native/mod_jk/common jk_ajp13_worker.c jk_service.h jk_util.c Log: Unread body bits need to be discarded or Apache will consider them a new request. (cf

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp13_worker.c

2001-01-10 Thread danmil
danmil 01/01/10 18:36:14 Modified:src/native/mod_jk/common jk_ajp13_worker.c Log: - Clarified Ajp13 protocol: if the container tries to read past the end of the input stream, the server sends an empty packet back. Revision ChangesPath 1.3 +14 -12jakarta

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_ajp12_worker.c jk_ajp13.c jk_ajp13.h jk_ajp13_worker.c jk_connect.c jk_connect.h jk_global.h jk_jni_worker.c jk_lb_worker.c jk_map.c jk_msg_buff.c jk_msg_buff.h jk_pool.h jk_service.h jk_sockbuf.c jk_uri_worker_map.c jk_util.c jk_util.h jk_worker.c

2000-11-10 Thread nacho
nacho 00/11/10 10:48:53 Modified:src/native/mod_jk/apache1.3 Makefile.linux mod_jk.c src/native/mod_jk/common jk_ajp12_worker.c jk_ajp13.c jk_ajp13.h jk_ajp13_worker.c jk_connect.c jk_connect.h jk_global.h jk_jni_worker.c