Annotation of libwww/Library/src/HTInit.c, revision 2.78

2.20      frystyk     1: /*                                                                    HTInit.c
                      2: **     CONFIGURATION-SPECIFIC INITIALIALIZATION
                      3: **
2.25      frystyk     4: **     (c) COPYRIGHT MIT 1995.
2.20      frystyk     5: **     Please first read the full copyright statement in the file COPYRIGH.
2.78    ! frystyk     6: **     @(#) $Id: HTInit.c,v 2.77 1997/01/10 20:59:39 eric Exp $
2.9       duns        7: **
2.20      frystyk     8: **     Define a basic set of suffixes and presentations
2.1       timbl       9: */
                     10: 
2.22      frystyk    11: /* Library include files */
2.52      frystyk    12: #include "sysdep.h"
2.59      frystyk    13: #include "WWWUtil.h"
                     14: #include "WWWCore.h"
2.75      frystyk    15: #include "WWWMux.h"
                     16: 
2.22      frystyk    17: #include "HTInit.h"                                     /* Implemented here */
2.1       timbl      18: 
2.65      frystyk    19: #ifndef W3C_ICONS
2.75      frystyk    20: #define W3C_ICONS      "/usr/local/share/w3c-icons"
2.65      frystyk    21: #endif
                     22: 
                     23: #define ICON_LOCATION  "/internal-icon/"
                     24: 
2.29      frystyk    25: /* ------------------------------------------------------------------------- */
                     26: 
2.23      frystyk    27: /*     BINDINGS BETWEEN A SOURCE MEDIA TYPE AND A DEST MEDIA TYPE (CONVERSION)
                     28: **     ----------------------------------------------------------------------
2.47      frystyk    29: **     Not done automaticly - may be done by application!
2.23      frystyk    30: */
2.38      frystyk    31: PUBLIC void HTConverterInit (HTList * c)
2.23      frystyk    32: {
2.31      frystyk    33:     /*
2.49      frystyk    34:     ** You can get debug information out through the debug stream if you set
                     35:     ** the debug format appropriately
                     36:     */
                     37:     HTConversion_add(c,"*/*",                  "www/debug",    HTBlackHoleConverter,   1.0, 0.0, 0.0);
                     38: 
                     39:     /*
2.31      frystyk    40:     ** These are converters that converts to something other than www/present,
                     41:     ** that is not directly outputting someting to the user on the screen
                     42:     */
2.43      frystyk    43:     HTConversion_add(c,"message/rfc822",       "*/*",          HTMIMEConvert,  1.0, 0.0, 0.0);
2.55      frystyk    44:     HTConversion_add(c,"message/x-rfc822-foot",        "*/*",          HTMIMEFooter,   1.0, 0.0, 0.0);
2.72      frystyk    45:     HTConversion_add(c,"message/x-rfc822-head",        "*/*",          HTMIMEHeader,   1.0, 0.0, 0.0);
2.73      frystyk    46:     HTConversion_add(c,"message/x-rfc822-partial","*/*",               HTMIMEPartial,  1.0, 0.0, 0.0);
2.43      frystyk    47:     HTConversion_add(c,"multipart/*",          "*/*",          HTBoundary,     1.0, 0.0, 0.0);
2.38      frystyk    48:     HTConversion_add(c,"text/plain",           "text/html",    HTPlainToHTML,  1.0, 0.0, 0.0);
2.39      frystyk    49: 
                     50:     /*
                     51:     ** The following conversions are converting ASCII output from various
                     52:     ** protocols to HTML objects.
                     53:     */
2.51      frystyk    54:     HTConversion_add(c,"text/x-http",          "*/*",          HTTPStatus_new, 1.0, 0.0, 0.0);
2.68      frystyk    55: 
2.42      frystyk    56: #if 0
                     57:     HTConversion_add(c,"text/x-gopher",                "www/present",  HTGopherMenu,   1.0, 0.0, 0.0);
                     58:     HTConversion_add(c,"text/x-cso",           "www/present",  HTGopherCSO,    1.0, 0.0, 0.0);
2.68      frystyk    59:     HTConversion_add(c,"text/x-wais-source",   "*/*",          HTWSRCConvert,  1.0, 0.0, 0.0);
                     60: #endif
                     61: 
2.48      frystyk    62:     HTConversion_add(c,"text/x-nntp-list",     "*/*",          HTNewsList,     1.0, 0.0, 0.0);
                     63:     HTConversion_add(c,"text/x-nntp-over",     "*/*",          HTNewsGroup,    1.0, 0.0, 0.0);
2.43      frystyk    64: 
2.31      frystyk    65:     /*
2.45      frystyk    66:     ** We also register a special content type guess stream that can figure out
                     67:     ** the content type by reading the first bytes of the stream
                     68:     */
                     69:     HTConversion_add(c,"www/unknown",          "*/*",          HTGuess_new,    1.0, 0.0, 0.0);
2.46      frystyk    70: 
                     71:     /*
2.72      frystyk    72:     ** Register a persistent cache stream which can save an object to local
                     73:     ** file
                     74:     */
                     75:     HTConversion_add(c,"www/cache",            "*/*",          HTCacheWriter,  1.0, 0.0, 0.0);
2.73      frystyk    76:     HTConversion_add(c,"www/cache-append",     "*/*",          HTCacheAppend,  1.0, 0.0, 0.0);
2.72      frystyk    77: 
                     78:     /*
2.46      frystyk    79:     ** Handling Rule files is handled just like any other stream
                     80:     ** This converter reads a rule file and generates the rules
                     81:     */
2.48      frystyk    82:     HTConversion_add(c,"application/x-www-rules","*/*",                HTRules,        1.0, 0.0, 0.0);
2.46      frystyk    83: 
2.45      frystyk    84:     /*
2.34      frystyk    85:     ** This dumps all other formats to local disk without any further
2.31      frystyk    86:     ** action taken
                     87:     */
2.38      frystyk    88:     HTConversion_add(c,"*/*",                  "www/present",  HTSaveLocally,  0.3, 0.0, 0.0);
2.23      frystyk    89: }
                     90: 
                     91: /*     BINDINGS BETWEEN MEDIA TYPES AND EXTERNAL VIEWERS/PRESENTERS
                     92: **     ------------------------------------------------------------
2.47      frystyk    93: **     Not done automaticly - may be done by application!
2.23      frystyk    94: **     The data objects are stored in temporary files before the external
                     95: **     program is called
                     96: */
2.38      frystyk    97: PUBLIC void HTPresenterInit (HTList * c)
2.1       timbl      98: {
                     99: #ifdef NeXT
2.38      frystyk   100:     HTPresentation_add(c,"application/postscript", "open %s",  NULL, 1.0, 2.0, 0.0);
2.10      luotonen  101:     /* The following needs the GIF previewer -- you might not have it. */
2.19      howcome   102: 
2.38      frystyk   103:     HTPresentation_add(c,"image/gif",          "open %s",      NULL, 0.3, 2.0, 0.0);
2.44      frystyk   104:     HTPresentation_add(c,"image/tiff",         "open %s",      NULL, 1.0, 2.0, 0.0);
2.41      frystyk   105:     HTPresentation_add(c,"audio/basic",        "open %s",      NULL, 1.0, 2.0, 0.0);
                    106:     HTPresentation_add(c,"*/*",                "open %s",      NULL, 0.05, 0.0, 0.0); 
2.1       timbl     107: #else
2.10      luotonen  108:     if (getenv("DISPLAY")) {   /* Must have X11 */
2.38      frystyk   109:        HTPresentation_add(c,"application/postscript", "ghostview %s",  NULL, 1.0, 3.0, 0.0);
2.41      frystyk   110:        HTPresentation_add(c,"image/gif",       "xv %s",        NULL, 1.0, 3.0, 0.0);
2.44      frystyk   111:        HTPresentation_add(c,"image/tiff",      "xv %s",        NULL, 1.0, 3.0, 0.0);
2.38      frystyk   112:        HTPresentation_add(c,"image/jpeg",      "xv %s",        NULL, 1.0, 3.0, 0.0);
2.44      frystyk   113:        HTPresentation_add(c,"image/png",       "xv %s",        NULL, 1.0, 3.0, 0.0);
2.10      luotonen  114:     }
2.1       timbl     115: #endif
2.15      frystyk   116: }
                    117: 
                    118: 
2.23      frystyk   119: /*     PRESENTERS AND CONVERTERS AT THE SAME TIME
                    120: **     ------------------------------------------
2.47      frystyk   121: **     Not done automaticly - may be done by application!
2.23      frystyk   122: **     This function is only defined in order to preserve backward
                    123: **     compatibility.
                    124: */
2.38      frystyk   125: PUBLIC void HTFormatInit (HTList * c)
2.15      frystyk   126: {
2.23      frystyk   127:     HTConverterInit(c);
                    128:     HTPresenterInit(c);
                    129: 
2.1       timbl     130: }
                    131: 
2.78    ! frystyk   132: /*     BINDINGS BETWEEN A TRANSFER ENCODING AND CODERS / DECODERS
        !           133: **     ----------------------------------------------------------
2.55      frystyk   134: **     Not done automaticly - may be done by application!
                    135: */
2.78    ! frystyk   136: PUBLIC void HTTransferEncoderInit (HTList * c)
2.55      frystyk   137: {
2.63      frystyk   138:     HTCoding_add(c, "chunked", HTChunkedEncoder, HTChunkedDecoder, 1.0);
2.55      frystyk   139: }
2.47      frystyk   140: 
2.78    ! frystyk   141: /*     BINDINGS BETWEEN A CONTENT ENCODING AND CODERS / DECODERS
        !           142: **     ---------------------------------------------------------
        !           143: **     Not done automaticly - may be done by application!
        !           144: */
        !           145: PUBLIC void HTContentEncoderInit (HTList * c)
        !           146: {
        !           147: #ifdef ZLIB
        !           148:     HTCoding_add(c, "deflate", NULL, HTZLib_inflate, 1.0);
        !           149: #endif /* ZLIB */
        !           150: }
        !           151: 
2.64      frystyk   152: /*     REGISTER BEFORE FILTERS
                    153: **     -----------------------
                    154: **     The BEFORE filters handle proxies, caches, rule files etc.
                    155: **     The filters are called in the order by which the are registered
                    156: **     Not done automaticly - may be done by application!
                    157: */
                    158: PUBLIC void HTBeforeInit (void)
                    159: {
2.74      frystyk   160:     HTNet_addBefore(HTMemoryCacheFilter,       NULL,           NULL, HT_FILTER_MIDDLE);
                    161:     HTNet_addBefore(HTCacheFilter,             "http://*",     NULL, HT_FILTER_MIDDLE);
                    162:     HTNet_addBefore(HTCredentialsFilter,       "http://*",     NULL, HT_FILTER_LATE);
                    163:     HTNet_addBefore(HTPEP_beforeFilter,        "http://*",     NULL, HT_FILTER_LATE);
                    164:     HTNet_addBefore(HTRuleFilter,              NULL,           NULL, HT_FILTER_LATE);
                    165:     HTNet_addBefore(HTProxyFilter,             NULL,           NULL, HT_FILTER_LATE);
2.64      frystyk   166: }
                    167: 
                    168: /*     REGISTER AFTER FILTERS
                    169: **     ----------------------
                    170: **     The AFTER filters handle error messages, logging, redirection,
                    171: **     authentication etc.
                    172: **     The filters are called in the order by which the are registered
                    173: **     Not done automaticly - may be done by application!
                    174: */
                    175: PUBLIC void HTAfterInit (void)
                    176: {
2.74      frystyk   177:     HTNet_addAfter(HTAuthFilter,       "http://*",     NULL, HT_NO_ACCESS,     HT_FILTER_MIDDLE);
                    178:     HTNet_addAfter(HTPEP_afterFilter,  "http://*",     NULL, HT_ALL,           HT_FILTER_MIDDLE);
                    179:     HTNet_addAfter(HTRedirectFilter,   "http://*",     NULL, HT_TEMP_REDIRECT, HT_FILTER_MIDDLE);
                    180:     HTNet_addAfter(HTRedirectFilter,   "http://*",     NULL, HT_PERM_REDIRECT, HT_FILTER_MIDDLE);
                    181:     HTNet_addAfter(HTUseProxyFilter,   "http://*",     NULL, HT_USE_PROXY,     HT_FILTER_MIDDLE);
                    182:     HTNet_addAfter(HTCacheUpdateFilter, "http://*",    NULL, HT_NOT_MODIFIED,  HT_FILTER_MIDDLE);
                    183:     HTNet_addAfter(HTLogFilter,        NULL,           NULL, HT_ALL,           HT_FILTER_LATE);
                    184:     HTNet_addAfter(HTInfoFilter,       NULL,           NULL, HT_ALL,           HT_FILTER_LATE);
2.64      frystyk   185: }
                    186: 
                    187: /*     REGISTER DEFAULT AUTHENTICATION SCHEMES
                    188: **     ---------------------------------------
                    189: **     This function registers the BASIC access authentication
                    190: */
                    191: PUBLIC void HTAAInit (void)
                    192: {
                    193:     HTAA_newModule ("basic", HTBasic_generate, HTBasic_parse, HTBasic_delete);
                    194: }
                    195: 
                    196: /*     REGISTER BEFORE AND AFTER FILTERS
                    197: **     ---------------------------------
                    198: **     We register a commonly used set of BEFORE and AFTER filters.
2.47      frystyk   199: **     Not done automaticly - may be done by application!
                    200: */
                    201: PUBLIC void HTNetInit (void)
                    202: {
2.64      frystyk   203:     HTBeforeInit();
                    204:     HTAfterInit();
2.47      frystyk   205: }
                    206: 
                    207: 
                    208: /*     REGISTER CALLBACKS FOR THE ALERT MANAGER
                    209: **     ----------------------------------------
                    210: **     We register a set of alert messages
                    211: **     Not done automaticly - may be done by application!
                    212: */
                    213: PUBLIC void HTAlertInit (void)
                    214: {
                    215:     HTAlert_add(HTProgress, HT_A_PROGRESS);
                    216:     HTAlert_add(HTError_print, HT_A_MESSAGE);
                    217:     HTAlert_add(HTConfirm, HT_A_CONFIRM);
                    218:     HTAlert_add(HTPrompt, HT_A_PROMPT);
                    219:     HTAlert_add(HTPromptPassword, HT_A_SECRET);
                    220:     HTAlert_add(HTPromptUsernameAndPassword, HT_A_USER_PW);
                    221: }
                    222: 
2.53      frystyk   223: /*     REGISTER ALL KNOWN TRANSPORTS IN THE LIBRARY
                    224: **     --------------------------------------------
                    225: **     Not done automaticly - may be done by application!
                    226: */
                    227: PUBLIC void HTTransportInit (void)
                    228: {
2.69      frystyk   229:     HTTransport_add("tcp", HT_TP_SINGLE, HTReader_new, HTWriter_new);
                    230:     HTTransport_add("buffered_tcp", HT_TP_SINGLE, HTReader_new, HTBufferWriter_new);
2.75      frystyk   231: #ifdef HT_MUX
2.76      frystyk   232:     HTTransport_add("mux", HT_TP_INTERLEAVE, HTReader_new, HTBufferWriter_new);
2.75      frystyk   233: #endif /* HT_MUX */
2.54      frystyk   234: #ifndef NO_UNIX_IO
2.69      frystyk   235:     HTTransport_add("local", HT_TP_SINGLE, HTReader_new, HTWriter_new);
2.54      frystyk   236: #else
2.69      frystyk   237:     HTTransport_add("local", HT_TP_SINGLE, HTANSIReader_new, HTANSIWriter_new);
2.54      frystyk   238: #endif
2.53      frystyk   239: }
2.47      frystyk   240: 
2.24      frystyk   241: /*     REGISTER ALL KNOWN PROTOCOLS IN THE LIBRARY
                    242: **     -------------------------------------------
2.47      frystyk   243: **     Not done automaticly - may be done by application!
2.24      frystyk   244: */
2.63      frystyk   245: PUBLIC void HTProtocolInit (void)
2.24      frystyk   246: {
                    247: #ifndef DECNET
2.75      frystyk   248:     HTProtocol_add("ftp",      "tcp",  FTP_PORT,       NO,     HTLoadFTP,      NULL);
                    249:     HTProtocol_add("nntp",     "tcp",  NEWS_PORT,      NO,     HTLoadNews,     NULL);
                    250:     HTProtocol_add("news",     "tcp",  NEWS_PORT,      NO,     HTLoadNews,     NULL);
                    251:     HTProtocol_add("gopher",   "tcp",  GOPHER_PORT,    NO,     HTLoadGopher,   NULL);
2.24      frystyk   252: #ifdef HT_DIRECT_WAIS
2.75      frystyk   253:     HTProtocol_add("wais",     "",     WAIS_PORT,      YES,    HTLoadWAIS,     NULL);
2.24      frystyk   254: #endif
                    255: #endif /* DECNET */
2.75      frystyk   256: #ifdef HT_MUX
                    257:     HTProtocol_add("http",     "mux",  HTTP_PORT,      NO,     HTLoadHTTP,     NULL);
                    258: #else
                    259:     HTProtocol_add("http",     "buffered_tcp", HTTP_PORT,      NO,     HTLoadHTTP,     NULL);
                    260: #endif /* !HT_MUX */
                    261:     HTProtocol_add("file",     "local",        0,              NO,     HTLoadFile,     NULL);
                    262:     HTProtocol_add("cache",    "local",        0,              NO,     HTLoadCache,    NULL);
                    263:     HTProtocol_add("telnet",   "",             0,      YES,    HTLoadTelnet,   NULL);
                    264:     HTProtocol_add("tn3270",   "",             0,      YES,    HTLoadTelnet,   NULL);
                    265:     HTProtocol_add("rlogin",   "",             0,      YES,    HTLoadTelnet,   NULL);
2.24      frystyk   266: }
2.1       timbl     267: 
2.65      frystyk   268: /*     REGISTER ALL KNOWN PROTOCOLS IN THE LIBRARY PREEMPTIVELY
                    269: **     --------------------------------------------------------
                    270: **     Not done automaticly - may be done by application!
                    271: */
                    272: PUBLIC void HTProtocolPreemptiveInit (void)
                    273: {
                    274: #ifndef DECNET
2.75      frystyk   275:     HTProtocol_add("ftp", "tcp", FTP_PORT, YES, HTLoadFTP, NULL);
                    276:     HTProtocol_add("nntp", "tcp", NEWS_PORT, YES, HTLoadNews, NULL);
                    277:     HTProtocol_add("news", "tcp", NEWS_PORT, YES, HTLoadNews, NULL);
                    278:     HTProtocol_add("gopher", "tcp", GOPHER_PORT, YES, HTLoadGopher, NULL);
2.65      frystyk   279: #ifdef HT_DIRECT_WAIS
2.75      frystyk   280:     HTProtocol_add("wais", "", WAIS_PORT, YES, HTLoadWAIS, NULL);
2.65      frystyk   281: #endif
                    282: #endif /* DECNET */
                    283: 
2.75      frystyk   284:     HTProtocol_add("http", "buffered_tcp", HTTP_PORT, YES, HTLoadHTTP, NULL);
                    285:     HTProtocol_add("file", "local", 0, YES, HTLoadFile, NULL);
                    286:     HTProtocol_add("telnet", "", 0, YES, HTLoadTelnet, NULL);
                    287:     HTProtocol_add("tn3270", "", 0, YES, HTLoadTelnet, NULL);
                    288:     HTProtocol_add("rlogin", "", 0, YES, HTLoadTelnet, NULL);
                    289:     HTProtocol_add("cache","local",0,YES,HTLoadCache,  NULL);
2.61      frystyk   290: }
                    291: 
2.48      frystyk   292: /*     BINDINGS BETWEEN ICONS AND MEDIA TYPES
                    293: **     --------------------------------------
                    294: **     Not done automaticly - may be done by application!
                    295: **     For directory listings etc. you can bind a set of icons to a set of
                    296: **     media types and special icons for directories and other objects that
                    297: **     do not have a media type.
                    298: */
2.61      frystyk   299: PUBLIC void HTIconInit (const char * url_prefix)
2.58      eric      300: {
2.65      frystyk   301:     const char * prefix = url_prefix ? url_prefix : ICON_LOCATION;
2.58      eric      302: 
2.61      frystyk   303:     HTIcon_addBlank("blank.xbm",       prefix, NULL);
                    304:     HTIcon_addDir("directory.xbm",     prefix, "DIR");
                    305:     HTIcon_addParent("back.xbm",       prefix, "UP");
                    306:     HTIcon_addUnknown("unknown.xbm",   prefix, NULL);
                    307: 
                    308:     HTIcon_add("unknown.xbm",  prefix, NULL,   "*/*");
                    309:     HTIcon_add("binary.xbm",   prefix, "BIN",  "binary");
                    310:     HTIcon_add("unknown.xbm",  prefix, NULL,   "www/unknown");
                    311:     HTIcon_add("text.xbm",     prefix, "TXT",  "text/*");
                    312:     HTIcon_add("image.xbm",    prefix, "IMG",  "image/*");
                    313:     HTIcon_add("movie.xbm",    prefix, "MOV",  "video/*");
                    314:     HTIcon_add("sound.xbm",    prefix, "AU",   "audio/*");
                    315:     HTIcon_add("tar.xbm",      prefix, "TAR",  "multipart/x-tar");
                    316:     HTIcon_add("tar.xbm",      prefix, "TAR",  "multipart/x-gtar");
                    317:     HTIcon_add("compressed.xbm",prefix,        "CMP",  "x-compress");
                    318:     HTIcon_add("compressed.xbm",prefix,        "GZP",  "x-gzip");
                    319:     HTIcon_add("index.xbm",    prefix, "IDX",  "application/x-gopher-index");
                    320:     HTIcon_add("index2.xbm",   prefix, "CSO",  "application/x-gopher-cso");
                    321:     HTIcon_add("telnet.xbm",   prefix, "TEL",  "application/x-gopher-telnet");
                    322:     HTIcon_add("unknown.xbm",  prefix, "DUP",  "application/x-gopher-duplicate");
                    323:     HTIcon_add("unknown.xbm",  prefix, "TN",   "application/x-gopher-tn3270");
2.65      frystyk   324: 
                    325:     /* Add global  mapping to where to find the internal icons */
                    326:     HTRule_addGlobal(HT_Pass, ICON_LOCATION, W3C_ICONS);
2.58      eric      327: }
                    328: 
2.57      eric      329: /*     REGISTER ALL HTTP/1.1 MIME HEADERS
                    330: **     --------------------------------------------
                    331: **     Not done automaticly - may be done by application!
                    332: */
2.64      frystyk   333: PUBLIC void HTMIMEInit (void)
2.57      eric      334: {
                    335:     struct {
                    336:         char * string;
                    337:        HTParserCallback * pHandler;
                    338:     } fixedHandlers[] = {
2.61      frystyk   339:        {"accept", &HTMIME_accept}, 
                    340:        {"accept-charset", &HTMIME_acceptCharset}, 
                    341:        {"accept-encoding", &HTMIME_acceptEncoding}, 
                    342:        {"accept-language", &HTMIME_acceptLanguage}, 
                    343:        {"accept-ranges", &HTMIME_acceptRanges}, 
                    344:        {"authorization", NULL},
2.72      frystyk   345:        {"cache-control", &HTMIME_cacheControl},
2.61      frystyk   346:        {"connection", &HTMIME_connection}, 
                    347:        {"content-encoding", &HTMIME_contentEncoding}, 
                    348:        {"content-length", &HTMIME_contentLength}, 
                    349:        {"content-range", &HTMIME_contentRange},
                    350:        {"content-transfer-encoding", &HTMIME_contentTransferEncoding}, 
                    351:        {"content-type", &HTMIME_contentType},
                    352:        {"digest-MessageDigest", &HTMIME_messageDigest}, 
2.77      eric      353:        {"keep-alive", &HTMIME_keepAlive}, 
2.61      frystyk   354:        {"link", &HTMIME_link},
                    355:        {"location", &HTMIME_location},
                    356:        {"max-forwards", &HTMIME_maxForwards}, 
2.57      eric      357:        {"mime-version", NULL}, 
2.61      frystyk   358:        {"pragma", &HTMIME_pragma},
2.73      frystyk   359:         {"protocol", &HTMIME_protocol},
                    360:         {"protocol-info", &HTMIME_protocolInfo},
                    361:         {"protocol-request", &HTMIME_protocolRequest},
2.66      frystyk   362:        {"proxy-authenticate", &HTMIME_authenticate},
2.61      frystyk   363:        {"proxy-authorization", &HTMIME_proxyAuthorization},
                    364:        {"public", &HTMIME_public},
                    365:        {"range", &HTMIME_range},
                    366:        {"referer", &HTMIME_referer},
                    367:        {"retry-after", &HTMIME_retryAfter}, 
2.62      frystyk   368:        {"server", &HTMIME_server}, 
2.61      frystyk   369:        {"transfer-encoding", &HTMIME_contentTransferEncoding}, 
                    370:        {"upgrade", &HTMIME_upgrade},
                    371:        {"user-agent", &HTMIME_userAgent},
                    372:        {"vary", &HTMIME_vary},
                    373:        {"via", &HTMIME_via},
                    374:        {"warning", &HTMIME_warning},
                    375:        {"www-authenticate", &HTMIME_authenticate}, 
2.57      eric      376:     };
                    377:     int i;
                    378: 
                    379:     for (i = 0; i < sizeof(fixedHandlers)/sizeof(fixedHandlers[0]); i++)
                    380:         HTHeader_addParser(fixedHandlers[i].string, NO, 
                    381:                           fixedHandlers[i].pHandler);
                    382: }
                    383: 

Webmaster