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

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

Webmaster