Update of /cvsroot/mod-c/ehtml/include
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv4952/include
Modified Files:
Request.h
Log Message:
* ContentLength is now a long value, rather than a pair of C strings.
Index: Request.h
===================================================================
RCS file: /cvsroot/mod-c/ehtml/include/Request.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Request.h 24 Oct 2006 15:27:03 -0000 1.10
--- Request.h 1 Dec 2006 14:45:47 -0000 1.11
***************
*** 184,190 ****
};
/**
! * The content length header key/value pair.
*/
! HeaderEntry * ContentLength;
/**
* A list of special headers.
--- 184,191 ----
};
/**
! * The content length header value.
! * Will be set to -1 if unset.
*/
! long ContentLength;
/**
* A list of special headers.
|