Annotation of libwww/Library/src/HTTP.html, revision 2.16

2.6       timbl       1: <HTML>
                      2: <HEAD>
2.13      frystyk     3: <TITLE>Multithreaded HTTP Client</TITLE>
                      4: </HEAD>
2.6       timbl       5: <BODY>
2.9       frystyk     6: 
2.11      frystyk     7: <H1>Multi Threaded HyperText Tranfer Protocol Module</H1>
2.13      frystyk     8: 
                      9: <PRE>
                     10: /*
                     11: **     (c) COPYRIGHT CERN 1994.
                     12: **     Please first read the full copyright statement in the file COPYRIGH.
                     13: */
                     14: </PRE>
2.11      frystyk    15: 
                     16: This is actually a very small definition file as almost everything is
                     17: set up elsewhere. <P>
                     18: 
                     19: This module is implemented by <A HREF="HTTP.c">HTTP.c</A>, and it is a
                     20: part of the <A NAME="z10"
2.16    ! frystyk    21: HREF="http://www.w3.org/hypertext/WWW/Library/User/Guide/Guide.html">Library
2.11      frystyk    22: of Common Code</A>. <P>
2.9       frystyk    23: 
                     24: <PRE>
                     25: #ifndef HTTP_H
2.1       timbl      26: #define HTTP_H
2.15      frystyk    27: 
2.12      frystyk    28: #include "HTAccess.h"
2.7       timbl      29: </PRE>
2.9       frystyk    30: 
                     31: <H2>Controlling Flags</H2>
                     32: 
                     33: The following variables can change the behaviour of the module.
                     34: 
                     35: <H3>Cache control flag</H3>
                     36: 
2.11      frystyk    37: <EM>Note: This variable is now replaced by the (char *) HTCacheDir in
2.10      frystyk    38: <A HREF="HTAccess.html">HTAccess Module</A></EM> <P>
2.9       frystyk    39: 
                     40: Turn this off if you don't want HTTP protocol fetches to leave cache files.
2.8       frystyk    41:        extern  BOOL  HTCacheHTTP;
2.1       timbl      42: 
2.9       frystyk    43: <H3>Redirections</H3>
2.7       timbl      44: 
2.11      frystyk    45: The maximum number of redirections is pr. default 10 and is set in the
                     46: module. This prevents the library from going into an infinite loop
                     47: which is kind of nice :-)
2.9       frystyk    48: 
                     49: <PRE>
                     50: extern int HTMaxRedirections;
2.10      frystyk    51: 
2.6       timbl      52: #endif /* HTTP_H */
2.9       frystyk    53: </PRE>
2.1       timbl      54: 
2.16    ! frystyk    55: End of HTTP module declaration
2.9       frystyk    56: </BODY>
2.6       timbl      57: </HTML>

Webmaster