Annotation of libwww/Library/src/HTMIMERq.html, revision 2.3

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.3     ! frystyk     3: <TITLE>W3C Reference Library libwww MIME REQUEST STREAM</TITLE>
2.2       frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 29-Jan-1996 -->
2.1       frystyk     5: </HEAD>
                      6: <BODY>
                      7: 
                      8: <H1>MIME Request Stream</H1>
                      9: 
                     10: The MIME Request stream generates a MIME request header and writes it
                     11: to the target which is normally a HTWriter stream.<P>
                     12: 
                     13: This module is implemented by <A HREF="HTMIMERq.c">HTMIMERq.c</A>, and
                     14: it is a part of the <A HREF="http://www.w3.org/pub/WWW/Library/"> W3C
                     15: Reference Library</A>.
                     16: 
                     17: <PRE>
                     18: #ifndef HTMIMERQ_H
                     19: #define HTMIMERQ_H
                     20: 
                     21: #include "HTStream.h"
                     22: #include "HTReq.h"
                     23: </PRE>
                     24: 
                     25: <H3>Streams Definition</H3>
                     26: 
2.2       frystyk    27: This stream makes a MIME header before it goes into transparent
                     28: mode. If <CODE>endHeader</CODE> is YES then we send an empty
                     29: <CODE>CRLF</CODE> in order to end the header.
2.1       frystyk    30: 
                     31: <PRE>
2.2       frystyk    32: extern HTStream * HTMIMERequest_new    (HTRequest * request, HTStream * target,
                     33:                                        BOOL endHeader);
2.1       frystyk    34: 
                     35: #endif
                     36: </PRE>
                     37: 
                     38: End of HTMIMERq
                     39: </BODY>
                     40: </HTML>
                     41: 

Webmaster