You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pi...@apache.org on 2001/07/20 01:47:31 UTC

cvs commit: jakarta-tomcat-connectors/webapp/include wa_request.h

pier        01/07/19 16:47:31

  Modified:    webapp/include wa_request.h
  Log:
  Added content-type to the request structure.
  
  Revision  Changes    Path
  1.6       +3 -1      jakarta-tomcat-connectors/webapp/include/wa_request.h
  
  Index: wa_request.h
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/include/wa_request.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- wa_request.h	2001/05/10 21:15:01	1.5
  +++ wa_request.h	2001/07/19 23:47:31	1.6
  @@ -58,7 +58,7 @@
   /**
    * @package Request Handling
    * @author  Pier Fumagalli <ma...@eng.sun.com>
  - * @version $Id: wa_request.h,v 1.5 2001/05/10 21:15:01 pier Exp $
  + * @version $Id: wa_request.h,v 1.6 2001/07/19 23:47:31 pier Exp $
    */
   #ifndef _WA_REQUEST_H_
   #define _WA_REQUEST_H_
  @@ -122,6 +122,8 @@
       char *auth;
       /** The content length of this request. */
       long clen;
  +    /** The content type of this request. */
  +    char *ctyp;
       /** The number of bytes read out of this request body. */
       long rlen;
       /** The current headers table. */