cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-08-01 Thread mturk
mturk 2004/08/01 06:28:02 Modified:ajp/ajplib/test ajp_header.c Log: Removed sc_for_req_method function, cause not needed. We have sc_for_req_method_by_id. The current can be made using sc_for_req_method_by_id(ap_method_number_of(method)). Revision ChangesPath 1.21

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-08-01 Thread mturk
mturk 2004/08/01 07:54:10 Modified:ajp/ajplib/test ajp_header.c Log: Use CMD_AJP13. Revision ChangesPath 1.22 +1 -1 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-08-01 Thread mturk
mturk 2004/08/01 08:23:23 Modified:ajp/ajplib/test ajp_header.c Log: Use CMD_AJP13_SEND_HEADERS instead hard coded number. Revision ChangesPath 1.23 +1 -1 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-08-01 Thread jfclere
jfclere 2004/08/01 09:50:27 Modified:ajp/ajplib/test ajp_header.c Log: Arrange uri handling. Revision ChangesPath 1.24 +12 -1 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-30 Thread mturk
mturk 2004/07/29 23:27:57 Modified:ajp/ajplib/test ajp_header.c Log: cast msg-buf cause it is unsigned char. Revision ChangesPath 1.14 +8 -4 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c ajp.h

2004-07-30 Thread mturk
mturk 2004/07/29 23:32:54 Modified:ajp/ajplib/test ajp_header.c ajp.h Log: Change the casting from void* to msg*. We don't need that, cause the ajp_msg_t is public. Revision ChangesPath 1.15 +8 -16 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c

Re: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c ajp.h

2004-07-30 Thread jean-frederic clere
[EMAIL PROTECTED] wrote: mturk 2004/07/29 23:32:54 Modified:ajp/ajplib/test ajp_header.c ajp.h Log: Change the casting from void* to msg*. We don't need that, cause the ajp_msg_t is public. The ideas was to prevent including of ajp.h in proxy_ajp.c Now ajp_header.c doesn't

RE: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c ajp.h

2004-07-30 Thread Mladen Turk
-Original Message- From: jean-frederic clere The ideas was to prevent including of ajp.h in proxy_ajp.c Now ajp_header.c doesn't compile: But the ajp.h is a public API for libajp, so, it should be included in any project using it. It has defined MT. smime.p7s Description:

Re: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c ajp.h

2004-07-30 Thread jean-frederic clere
Mladen Turk wrote: -Original Message- From: jean-frederic clere The ideas was to prevent including of ajp.h in proxy_ajp.c Now ajp_header.c doesn't compile: But the ajp.h is a public API for libajp, so, it should be included in any project using it. It has defined OK but I want to

RE: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c ajp.h

2004-07-30 Thread Mladen Turk
jean-frederic clere wrote: But the ajp.h is a public API for libajp, so, it should be included in any project using it. It has defined OK but I want to keep the AJP things as headen as possible in the proxy_ajp.c so we need another include. Sure thing. Only the ajp.h will

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-30 Thread jfclere
jfclere 2004/07/30 02:50:00 Modified:ajp/ajplib/test ajp_header.c Log: Arrange small things and temporaly modify ajp_read_header(). Revision ChangesPath 1.16 +21 -10jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-30 Thread mturk
mturk 2004/07/30 03:16:30 Modified:ajp/ajplib/test ajp_header.c Log: Few typos. Revision ChangesPath 1.17 +5 -5 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-30 Thread jfclere
jfclere 2004/07/30 03:21:06 Modified:ajp/ajplib/test ajp_header.c Log: Add a trace. Revision ChangesPath 1.18 +3 -0 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

RE: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-30 Thread Mladen Turk
[EMAIL PROTECTED] commited: Log: Arrange small things and temporaly modify ajp_read_header(). I really don't understand why is unacceptable to include ajp.h in mod_proxy. For example my compiler is complaining about missing prototypes in proxy_ajp. So either we'll make another header

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-30 Thread jfclere
jfclere 2004/07/30 10:06:20 Modified:ajp/ajplib/test ajp_header.c Log: Add logic to process what is after the headers ;-) Revision ChangesPath 1.19 +51 -0 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-30 Thread mturk
mturk 2004/07/30 12:26:37 Modified:ajp/ajplib/test ajp_header.c Log: Fix naming confusion. It is method not header Revision ChangesPath 1.20 +6 -6 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-29 Thread mturk
mturk 2004/07/28 23:53:44 Modified:ajp/ajplib/test ajp_header.c Log: Added sc_for_req_header_by_id instead sc_for_req_header. Apache already parses method for us, so there is no need to parse it again Revision ChangesPath 1.9 +43 -2

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-29 Thread jfclere
jfclere 2004/07/29 01:23:42 Modified:ajp/ajplib/test ajp_header.c Log: Add missng ajp_msg_reset(). Revision ChangesPath 1.10 +2 -0 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-29 Thread jfclere
jfclere 2004/07/29 02:58:48 Modified:ajp/ajplib/test ajp_header.c Log: Add a read routine... It returns the message to reuse it. Revision ChangesPath 1.11 +31 -0 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-29 Thread jfclere
jfclere 2004/07/29 07:38:18 Modified:ajp/ajplib/test ajp_header.c Log: Add routines to read the response. Revision ChangesPath 1.12 +60 -2 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-29 Thread jfclere
jfclere 2004/07/29 08:04:20 Modified:ajp/ajplib/test ajp_header.c Log: Typo. Revision ChangesPath 1.13 +1 -1 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c ===

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c ajp_header.h Makefile ajp.h

2004-07-28 Thread jfclere
jfclere 2004/07/28 07:43:46 Modified:ajp/ajplib/test Makefile ajp.h Added: ajp/ajplib/test ajp_header.c ajp_header.h Log: Add the building/reading of the headers. Revision ChangesPath 1.3 +6 -3 jakarta-tomcat-connectors/ajp/ajplib/test/Makefile

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread mturk
mturk 2004/07/28 09:11:27 Modified:ajp/ajplib/test ajp_header.c Log: Use apr types. Fix ajp_msg_peek settng wrong param Revision ChangesPath 1.2 +10 -11jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread mturk
mturk 2004/07/28 09:34:22 Modified:ajp/ajplib/test ajp_header.c Log: Modify sc_for_req_method. It is exactly the same as Apache's lookup_builtin_method with added SC_M_SEARCH Revision ChangesPath 1.3 +166 -63

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread jfclere
jfclere 2004/07/28 09:39:19 Modified:ajp/ajplib/test ajp_header.c Log: Add the routine that builds and sends the header using informations from the request_rec structure. Revision ChangesPath 1.4 +34 -0 jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c

RE: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread Mladen Turk
[EMAIL PROTECTED] jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c +rc = ajp_msg_create(r-pool,msg); Can we use Apache coding convention having one space after comma in function params? It won't IMO have a chance to get into httpd tree otherwise. I wanted to do that for JK2,

Re: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread jean-frederic clere
[EMAIL PROTECTED] wrote: mturk 2004/07/28 09:34:22 Modified:ajp/ajplib/test ajp_header.c Log: Modify sc_for_req_method. It is exactly the same as Apache's lookup_builtin_method with added SC_M_SEARCH Thanks. Mine was telling: +++ [Wed Jul 28 18:43:56 2004] [debug]

Re: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread jean-frederic clere
Mladen Turk wrote: [EMAIL PROTECTED] jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c +rc = ajp_msg_create(r-pool,msg); Can we use Apache coding convention having one space after comma in function params? Oops, I have done lot of those... I will fix them tomorrow. It won't IMO have

Re: cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread jean-frederic clere
jean-frederic clere wrote: [EMAIL PROTECTED] wrote: mturk 2004/07/28 09:34:22 Modified:ajp/ajplib/test ajp_header.c Log: Modify sc_for_req_method. It is exactly the same as Apache's lookup_builtin_method with added SC_M_SEARCH Thanks. Mine was telling: +++ [Wed Jul 28 18:43:56

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread jfclere
jfclere 2004/07/28 10:25:22 Modified:ajp/ajplib/test ajp_header.c Log: Fix the coding style errors and the extra ajp_ilink_send. Thanks!!! Revision ChangesPath 1.6 +11 -12jakarta-tomcat-connectors/ajp/ajplib/test/ajp_header.c Index: ajp_header.c

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread mturk
mturk 2004/07/28 12:16:21 Modified:ajp/ajplib/test ajp_header.c Log: Rewrite sc_for_req_header using apr and a little bit smarter comparision, using memcmp instead strcasecmp. Revision ChangesPath 1.7 +83 -82

cvs commit: jakarta-tomcat-connectors/ajp/ajplib/test ajp_header.c

2004-07-28 Thread mturk
mturk 2004/07/28 12:20:50 Modified:ajp/ajplib/test ajp_header.c Log: Rewrite sc_for_req_header using apr and a little bit smarter comparision, using memcmp instead strcasecmp. Revision ChangesPath 1.8 +4 -4