Annotation of libwww/Library/src/WWWHTTP.html, revision 2.6

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3: <TITLE>Declaration of W3C Reference HTTP MODULE</TITLE>
2.6     ! frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen,  6-Feb-1996 -->
2.1       frystyk     5: <NEXTID N="z11">
                      6: </HEAD>
                      7: <BODY>
                      8: 
                      9: <H1>Declaration of W3C Reference HTTP MODULE</H1>
                     10: 
                     11: <PRE>
                     12: /*
                     13: **     (c) COPYRIGHT MIT 1995.
                     14: **     Please first read the full copyright statement in the file COPYRIGH.
                     15: */
                     16: </PRE>
                     17: 
2.5       frystyk    18: This is the include file for all HTTP access including the server side
                     19: and the client side. It can be used together with the core of the W3C
                     20: Reference Library. It contains all HTTP specific modules which are
                     21: required to compile and build the HTTP DLL.<P>
2.1       frystyk    22: 
                     23: <PRE>
                     24: #ifndef WWWHTTP_H
                     25: #define WWWHTTP_H
                     26: </PRE>
                     27: 
                     28: <H2>Library Includes</H2>
                     29: 
                     30: <PRE>
                     31: #ifdef __cplusplus
                     32: extern "C" { 
                     33: #endif
                     34: </PRE>
                     35: 
                     36: <PRE>
2.6     ! frystyk    37: #include "HTTPUtil.h"                  /* Basic things */
2.1       frystyk    38: #include "HTTP.h"                      /* HTTP client state machine */
2.2       frystyk    39: #include "HTTPServ.h"                  /* HTTP server state machine */
2.4       frystyk    40: 
                     41: #include "HTTPGen.h"                   /* General HTTP Header Stream */
                     42: #include "HTTPReq.h"                   /* Stream for generating requests */
                     43: #include "HTTPRes.h"                   /* Stream for gererating responses */
                     44: 
2.1       frystyk    45: #include "HTAAUtil.h"                  /* Access authentication */
                     46: #include "HTAABrow.h"                  /* Access authentication */
                     47: </PRE>
                     48: 
                     49: End of HTTP module
                     50: 
                     51: <PRE>
                     52: #ifdef __cplusplus
                     53: } /* end extern C definitions */
                     54: #endif
                     55: 
                     56: #endif
                     57: </PRE>
                     58: 
                     59: End of WWWHTTP API definition
                     60: 
                     61: </BODY>
                     62: </HTML>

Webmaster