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

2.1     ! frystyk     1: <HTML>
        !             2: <HEAD>
        !             3: <TITLE>HTTP Communalities between Server and Client Module</TITLE>
        !             4: <!-- Changed by: Henrik Frystyk Nielsen, 19-Nov-1995 -->
        !             5: </HEAD>
        !             6: <BODY>
        !             7: 
        !             8: <H1>HTTP Communalities between Server and Client Module</H1>
        !             9: 
        !            10: The HTTP <A HREF="HTTP.html">client module</A> and the <A
        !            11: HREF="HTTPServ.html">server module</A> has a few things in common
        !            12: which we keep in this file.<P>
        !            13: 
        !            14: <PRE>
        !            15: #ifndef HTTPUTIL_H
        !            16: #define HTTPUTIL_H
        !            17: </PRE>
        !            18: 
        !            19: <H3>HTTP Version Management</H3>
        !            20: 
        !            21: <PRE>
        !            22: typedef enum _HTTPVersion {
        !            23:     HTTP = 0,
        !            24:     HTTP_09,           
        !            25:     HTTP_10,
        !            26:     HTTP_11,
        !            27:     HTTP_12
        !            28: } HTTPVersion;
        !            29: </PRE>
        !            30: 
        !            31: <PRE>
        !            32: #endif
        !            33: </PRE>
        !            34: 
        !            35: End of declaration
        !            36: </BODY>
        !            37: </HTML>
        !            38: 

Webmaster