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

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.4     ! frystyk     3: <TITLE>W3C Reference Library libwww HTTP RESPONSE STREAM</TITLE>
2.3       frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen,  5-Feb-1996 -->
2.1       frystyk     5: </HEAD>
                      6: <BODY>
                      7: 
                      8: <H1>HTTP Response Stream</H1>
                      9: 
                     10: The HTTP response stream generates a HTTP response header and writes
                     11: it to the target which is normally a HTWriter stream.<P>
                     12: 
                     13: This module is implemented by <A HREF="HTTPRes.c">HTTPRes.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 HTTPRES_H
                     19: #define HTTPRES_H
                     20: 
                     21: #include "HTStream.h"
2.3       frystyk    22: #include "HTReq.h"
2.1       frystyk    23: </PRE>
                     24: 
                     25: <H3>Streams Definition</H3>
                     26: 
2.3       frystyk    27: This stream makes a server specific HTTP header before it goes into
                     28: transparent mode. If <CODE>endHeader</CODE> is YES then we send an
                     29: empty <CODE>CRLF</CODE> in order to end the header.
2.1       frystyk    30: 
                     31: <PRE>
2.3       frystyk    32: extern HTStream * HTTPResponse_new (HTRequest *        request, HTStream * target,
                     33:                                    BOOL endHeader);
2.1       frystyk    34: </PRE>
                     35: 
                     36: <PRE>
                     37: #endif
                     38: </PRE>
                     39: 
                     40: End of declaration
                     41: </BODY>
                     42: </HTML>
                     43: 

Webmaster