mturk 2004/08/01 06:29:40 Modified: ajp/ajplib/test ajp.h Log: Use directly apj_msg_t instead void. If j-f-c will still insist we can make ajp_msg_t abstract to hide the implementation. Revision Changes Path 1.21 +4 -4 jakarta-tomcat-connectors/ajp/ajplib/test/ajp.h Index: ajp.h =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/ajp/ajplib/test/ajp.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ajp.h 30 Jul 2004 19:57:47 -0000 1.20 +++ ajp.h 1 Aug 2004 13:29:40 -0000 1.21 @@ -294,7 +294,7 @@ * @param rmsg Pointer to newly created AJP message * @return APR_SUCCESS or error */ -apr_status_t ajp_msg_create(apr_pool_t *pool, ajp_msg_t **rmsg); +apr_status_t ajp_msg_create(apr_pool_t *pool, void **rmsg); /** * Recopy an AJP Message to another @@ -373,7 +373,7 @@ */ apr_status_t ajp_read_header(apr_socket_t *sock, request_rec *r, - void **msg); + ajp_msg_t **msg); /** * Allocate a msg to send data @@ -384,7 +384,7 @@ * @return APR_SUCCESS or error */ apr_status_t ajp_alloc_data_msg(request_rec *r, char **ptr, apr_size_t *len, - void **data); + ajp_msg_t **data); /** * Send the data message @@ -395,7 +395,7 @@ * @return APR_SUCCESS or error */ apr_status_t ajp_send_data_msg(apr_socket_t *sock, request_rec *r, - void *data, apr_size_t len); + ajp_msg_t *data, apr_size_t len); #endif /* AJP_H */
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]