mturk 2004/07/28 11:42:02 Modified: ajp/ajplib/test ajp.h Log: Few comments on ajp_msg_t. Revision Changes Path 1.13 +5 -0 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.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ajp.h 28 Jul 2004 18:13:11 -0000 1.12 +++ ajp.h 28 Jul 2004 18:42:02 -0000 1.13 @@ -91,10 +91,15 @@ /** A structure that represents ajp message */ struct ajp_msg { + /** The buffer holding a AJP message */ apr_byte_t *buf; + /** The length of AJP message header (defaults to AJP_HEADER_LEN) */ apr_size_t header_len; + /** The length of AJP message */ apr_size_t len; + /** The current read position */ apr_size_t pos; + /** Flag indicating the origing of the message */ int server_side; };
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]