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

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3: <TITLE>HTTP Request Stream</TITLE>
                      4: </HEAD>
                      5: <BODY>
                      6: 
                      7: <H1>HTTP Request Stream</H1>
                      8: 
                      9: The HTTP Request stream generates a HTTP request header and writes it
                     10: to the target which is normally a HTWriter stream.<P>
                     11: 
                     12: This module is implemented by <A HREF="HTTPReq.c">HTTPReq.c</A>, and
                     13: it is a part of the <A
2.3     ! frystyk    14: HREF="http://www.w3.org/pub/WWW/Library/">
2.2       frystyk    15: W3C Reference Library</A>.
2.1       frystyk    16: 
                     17: <PRE>
                     18: #ifndef HTTPREQ_H
                     19: #define HTTPREQ_H
                     20: 
                     21: #include "HTStream.h"
                     22: #include "HTAccess.h"
                     23: </PRE>
                     24: 
                     25: <H3>Streams Definition</H3>
                     26: 
                     27: This stream makes a HTTP request header before it goes into
                     28: transparent mode.
                     29: 
                     30: <PRE>
                     31: extern HTStream * HTTPRequest_new      PARAMS((HTRequest *     request,
                     32:                                                HTStream *      target));
                     33: 
                     34: #endif
                     35: </PRE>
                     36: 
                     37: End of HTTPReq
                     38: </BODY>
                     39: </HTML>
                     40: 

Webmaster