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

2.1     ! frystyk     1: <HTML>
        !             2: <HEAD>
        !             3: <TITLE>HTTP Response Stream</TITLE>
        !             4: <!-- Changed by: Henrik Frystyk Nielsen,  3-Dec-1995 -->
        !             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"
        !            22: #include "HTReq.h"
        !            23: </PRE>
        !            24: 
        !            25: <H3>Streams Definition</H3>
        !            26: 
        !            27: This stream makes a HTTP response header before it goes into
        !            28: transparent mode.
        !            29: 
        !            30: <PRE>
        !            31: extern HTStream * HTTPResponse_new (HTRequest * request, HTStream * target);
        !            32: </PRE>
        !            33: 
        !            34: <PRE>
        !            35: #endif
        !            36: </PRE>
        !            37: 
        !            38: End of declaration
        !            39: </BODY>
        !            40: </HTML>
        !            41: 

Webmaster