cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-10 Thread mturk
mturk 2004/08/10 11:01:26 Modified:ajp/proxy proxy_ajp.c Log: Fix the return codes. We can not return the APR error codes. Revision ChangesPath 1.15 +23 -24jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-09 Thread mturk
mturk 2004/08/09 01:05:15 Modified:ajp/proxy proxy_ajp.c Log: Remove setting module config. Revision ChangesPath 1.14 +2 -0 jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-06 Thread mturk
mturk 2004/08/06 10:12:00 Modified:ajp/proxy proxy_ajp.c Log: Use the new connection pool for AJP. Revision ChangesPath 1.12 +75 -346 jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-06 Thread mturk
mturk 2004/08/06 10:41:25 Modified:ajp/proxy proxy_ajp.c Log: Bounding to client connection is not needed(?). Since AJP can serve multiple request trough the same backend connection, no need to create separate conn_rec. For now comment out all the set/get module config.

Re: cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-06 Thread Graham Leggett
[EMAIL PROTECTED] wrote: Bounding to client connection is not needed(?). Since AJP can serve multiple request trough the same backend connection, no need to create separate conn_rec. For now comment out all the set/get module config. Is there still a reason why in proxy_http the backend

RE: cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-06 Thread Mladen Turk
Graham Leggett wrote: Bounding to client connection is not needed(?). Since AJP can serve multiple request trough the same backend connection, no need to create separate conn_rec. For now comment out all the set/get module config. Is there still a reason why in proxy_http

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-02 Thread mturk
mturk 2004/08/02 09:38:12 Modified:ajp/proxy proxy_ajp.c Log: Rename parse_headers to parse_header. Revision ChangesPath 1.7 +22 -26jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-02 Thread mturk
mturk 2004/08/02 09:47:44 Modified:ajp/proxy proxy_ajp.c Log: Something weired happened with my CVS, repatching... Revision ChangesPath 1.8 +25 -21jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-02 Thread mturk
mturk 2004/08/02 09:55:20 Modified:ajp/proxy proxy_ajp.c Log: Some renaming and style cleanup. Revision ChangesPath 1.9 +14 -15jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-02 Thread mturk
mturk 2004/08/02 09:58:23 Modified:ajp/proxy proxy_ajp.c Log: Use ajp scheme when doing canonicalise. Revision ChangesPath 1.10 +7 -6 jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-02 Thread mturk
mturk 2004/08/02 10:05:06 Modified:ajp/proxy proxy_ajp.c Log: Well, we still need that casting :) Revision ChangesPath 1.11 +4 -2 jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-01 Thread mturk
mturk 2004/08/01 07:06:24 Modified:ajp/proxy proxy_ajp.c Log: Added include ajp.h, and made some casting Revision ChangesPath 1.4 +7 -5 jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-01 Thread mturk
mturk 2004/08/01 08:05:01 Modified:ajp/proxy proxy_ajp.c Log: Use protocol handler defines instead fixed numbers. Makes more sense what's happening. Revision ChangesPath 1.5 +5 -5 jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-08-01 Thread jfclere
jfclere 2004/08/01 10:56:32 Modified:ajp/proxy proxy_ajp.c Log: Close only when needed. Revision ChangesPath 1.6 +13 -11jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c ===

Re: cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-07-31 Thread Costin Manolache
Mladen Turk wrote: [EMAIL PROTECTED] commited +/* read the first bloc of data */ +if (bufsiz 0) { +status = ajp_send_data_msg(p_conn-sock, r, Just wondering. Can we send initial POST data together with header? Not sure what the spec are saying abut that, but

Re: cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-07-30 Thread jean-frederic clere
Graham Leggett wrote: [EMAIL PROTECTED] wrote: First try to get proxy using ajp (Note that is for httpd-2.1). Couple of comments (realising this is first try code): /* * Canonicalise http-like URLs. * scheme is the scheme for the URL * urlis the URL starting with the first '/'

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-07-30 Thread jfclere
jfclere 2004/07/30 05:21:28 Modified:ajp/proxy proxy_ajp.c Log: Clean useless code. Revision ChangesPath 1.2 +4 -261jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c ===

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-07-30 Thread jfclere
jfclere 2004/07/30 10:12:09 Modified:ajp/proxy proxy_ajp.c Log: Add the logic to read the body. Revision ChangesPath 1.3 +58 -29jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

RE: cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-07-30 Thread Mladen Turk
[EMAIL PROTECTED] commited +/* read the first bloc of data */ +if (bufsiz 0) { +status = ajp_send_data_msg(p_conn-sock, r, Just wondering. Can we send initial POST data together with header? Not sure what the spec are saying abut that, but think we

cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-07-29 Thread jfclere
jfclere 2004/07/29 08:13:59 Added: ajp/proxy proxy_ajp.c Log: First try to get proxy using ajp (Note that is for httpd-2.1). Revision ChangesPath 1.1 jakarta-tomcat-connectors/ajp/proxy/proxy_ajp.c Index: proxy_ajp.c

Re: cvs commit: jakarta-tomcat-connectors/ajp/proxy proxy_ajp.c

2004-07-29 Thread Graham Leggett
[EMAIL PROTECTED] wrote: First try to get proxy using ajp (Note that is for httpd-2.1). Couple of comments (realising this is first try code): /* * Canonicalise http-like URLs. * scheme is the scheme for the URL * urlis the URL starting with the first '/' * def_port is the