[BACK] Return to HTTP.c CVS log [TXT] [DIR] Up to [Public] / libwww / Library / src

Annotation of libwww/Library/src/HTTP.c, revision 1.52

1.44 frystyk 1: /*   HyperText73 Tranfer Protocol  - Client implementation     HTTP.c
1.1 timbl 2: **   ==========================
1.2 timbl 3: **
 4: ** Bugs:
 5: **   Not implemented:
 6: **       Forward
 7: **       Redirection
 8: **       Error handling
1.1 timbl 9: */
 10: 
 11: /*   Module parameters:
 12: **   -----------------
 13: **
 14: ** These may be undefined and redefined by syspec.h
 15: */
1.2 timbl 16: 
 17: /* Implements:
 18: */
 19: #include "HTTP.h"
 20: 
 21: #define HTTP_VERSION  "HTTP/1.0"
 22: #define HTTP2             /* Version is greater than 0.9 */
 23: 
 24: #define INIT_LINE_SIZE     1024  /* Start with line buffer this big */
 25: #define LINE_EXTEND_THRESH   256   /* Minimum read size */
 26: #define VERSION_LENGTH         20   /* for returned protocol version */
 27: 
 28: /* Uses:
 29: */
1.1 timbl 30: #include "HTParse.h"
 31: #include "HTUtils.h"
 32: #include "tcp.h"
 33: #include "HTTCP.h"
 34: #include "HTFormat.h"
1.2 timbl 35: #include <ctype.h>
 36: #include "HTAlert.h"
 37: #include "HTMIME.h"
1.5 timbl 38: #include "HTML.h"       /* SCW */
 39: #include "HTInit.h"      /* SCW */
1.21 luotonen 40: #include "HTAccess.h"     /* HTRequest */
1.14 luotonen 41: #include "HTAABrow.h"     /* Access Authorization */
1.20 timbl 42: #include "HTTee.h"       /* Tee off a cache stream */
 43: #include "HTFWriter.h"     /* Write to cache file */
1.1 timbl 44: 
1.2 timbl 45: struct _HTStream {
 46:    HTStreamClass * isa;      /* all we need to know */
 47: };
 48: 
1.6 timbl 49: extern char * HTAppName;    /* Application name: please supply */
 50: extern char * HTAppVersion;  /* Application version: please supply */
 51: 
1.50 luotonen 52: #ifdef OLD_CODE
1.37 luotonen 53: PUBLIC long HTProxyBytes = 0; /* Number of bytes transferred thru proxy */
1.50 luotonen 54: #endif
 55: 
1.37 luotonen 56: extern BOOL using_proxy;    /* are we using a proxy gateway? */
 57: PUBLIC char * HTProxyHeaders = NULL;  /* Headers to pass as-is */
1.23 luotonen 58: 
1.21 luotonen 59: PRIVATE void parse_401_headers ARGS2(HTRequest *,   req,
 60:                   HTInputSocket *,  isoc)
 61: {
 62:   HTAAScheme scheme;
 63:   char *line;
 64:   int num_schemes = 0;
 65:   HTList *valid_schemes = HTList_new();
 66:   HTAssocList **scheme_specifics = NULL;
 67:   char *template = NULL;
 68: 
 69:   /* Read server reply header lines */
 70: 
 71:   if (TRACE)
 72:    fprintf(stderr, "Server 401 reply header lines:\n");
 73: 
 74:   while (NULL != (line = HTInputSocket_getUnfoldedLine(isoc)) &&
 75:      *line != 0) {
 76: 
 77:    if (TRACE) fprintf(stderr, "%s\n", line);
 78: 
 79:    if (strchr(line, ':')) {    /* Valid header line */
 80: 
 81:      char *p = line;
 82:      char *fieldname = HTNextField(&p);
 83:      char *arg1 = HTNextField(&p);
 84:      char *args = p;
 85:      
 86:      if (0==strcasecomp(fieldname, "WWW-Authenticate:")) {
 87:        if (HTAA_UNKNOWN != (scheme = HTAAScheme_enum(arg1))) {
 88:          HTList_addObject(valid_schemes, (void*)scheme);
 89:          if (!scheme_specifics) {
 90:            int i;
 91:            scheme_specifics = (HTAssocList**)
 92:              malloc(HTAA_MAX_SCHEMES * sizeof(HTAssocList*));
 93:            if (!scheme_specifics)
 94:              outofmem(__FILE__, "parse_401_headers");
 95:            for (i=0; i < HTAA_MAX_SCHEMES; i++)
 96:              scheme_specifics[i] = NULL;
 97:          }
 98:          scheme_specifics[scheme] = HTAA_parseArgList(args);
 99:          num_schemes++;
 100:        }
 101:        else if (TRACE) {
 102:          fprintf(stderr, "Unknown scheme `%s' %s\n",
 103:              (arg1 ? arg1 : "(null)"),
 104:              "in WWW-Authenticate: field");
 105:        }
 106:      }
 107: 
 108:      else if (0==strcasecomp(fieldname, "WWW-Protection-Template:")) {
 109:        if (TRACE)
 110:          fprintf(stderr, "Protection template set to `%s'\n", arg1);
 111:        StrAllocCopy(template, arg1);
 112:      }
 113: 
 114:    } /* if a valid header line */
 115:    else if (TRACE) {
 116:      fprintf(stderr, "Invalid header line `%s' ignored\n", line);
 117:    } /* else invalid header line */
1.44 frystyk 118:    free(line);
1.21 luotonen 119:   } /* while header lines remain */
1.44 frystyk 120:   FREE(line);
1.21 luotonen 121:   req->valid_schemes = valid_schemes;
 122:   req->scheme_specifics = scheme_specifics;
 123:   req->prot_template = template;
 124: }
 125: 
 126: 
 127: 
1.1 timbl 128: /*       Load Document from HTTP Server         HTLoadHTTP()
 129: **       ==============================
 130: **
 131: **   Given a hypertext address, this routine loads a document.
 132: **
 133: **
 134: ** On entry,
 135: **   arg   is the hypertext reference of the article to be loaded.
 136: **
 137: ** On exit,
 138: **   returns >=0   If no error, a good socket number
 139: **       <0   Error.
 140: **
 141: **   The socket must be closed by the caller after the document has been
 142: **   read.
 143: **
 144: */
1.19 timbl 145: PUBLIC int HTLoadHTTP ARGS1 (HTRequest *, request)
1.1 timbl 146: {
1.22 luotonen 147:   CONST char * arg = NULL;
1.1 timbl 148:   int s;               /* Socket number for returned data */
 149:   int status;                /* tcp return */
1.10 timbl 150:   char crlf[3];           /* A CR LF equivalent string */
1.3 timbl 151:   HTStream * target = NULL;     /* Unconverted data */
1.46 frystyk 152:   BOOL cache_http = YES;    /* Enable caching of HTTP-retrieved files */
 153: 
1.2 timbl 154:   CONST char* gate = 0;       /* disable this feature */
1.1 timbl 155:   SockA soc_address;         /* Binary network address */
 156:   SockA * sin = &soc_address;
1.40 frystyk 157:   BOOL extensions = YES;       /* Assume good HTTP server */
1.36 frystyk 158: 
1.50 luotonen 159: #ifdef OLD_CODE
1.37 luotonen 160:   if (HTImProxy) HTProxyBytes = 0;
1.50 luotonen 161: #endif
1.23 luotonen 162: 
1.37 luotonen 163:   arg = HTAnchor_physical(request->anchor);
1.22 luotonen 164: 
1.1 timbl 165:   if (!arg) return -3;        /* Bad if no name sepcified   */
 166:   if (!*arg) return -2;       /* Bad if name had zero length */
 167: 
 168: /* Set up defaults:
 169: */
 170: #ifdef DECNET
1.2 timbl 171:   sin->sdn_family = AF_DECnet;      /* Family = DECnet, host order */
 172:   sin->sdn_objnum = DNP_OBJ;     /* Default: http object number */
1.1 timbl 173: #else /* Internet */
1.2 timbl 174:   sin->sin_family = AF_INET;   /* Family = internet, host order */
 175:   sin->sin_port = htons(TCP_PORT);  /* Default: http port  */
1.1 timbl 176: #endif
 177: 
1.10 timbl 178:   sprintf(crlf, "%c%c", CR, LF);   /* To be corect on Mac, VM, etc */
 179:   
1.1 timbl 180:   if (TRACE) {
 181:     if (gate) fprintf(stderr,
 182:        "HTTPAccess: Using gateway %s for %s\n", gate, arg);
 183:     else fprintf(stderr, "HTTPAccess: Direct access for %s\n", arg);
 184:   }
 185:   
 186: /* Get node name and optional port number:
 187: */
 188:   {
 189:    char *p1 = HTParse(gate ? gate : arg, "", PARSE_HOST);
 190:    int status = HTParseInet(sin, p1); /* TBL 920622 */
1.49 luotonen 191:    if (status) {
 192:      HTAddError2(request,"No such host:",p1);
 193:      free(p1);
 194:      return status;  /* No such host for example */
 195:    }
1.1 timbl 196:     free(p1);
 197:   }
 198:   
1.15 luotonen 199: /*
 200: ** Compose authorization information (this was moved here
 201: ** from after the making of the connection so that the connection
 202: ** wouldn't have to wait while prompting username and password
 203: ** from the user).               -- AL 13.10.93
 204: */
 205: #ifdef ACCESS_AUTH
1.21 luotonen 206:   HTAA_composeAuth(request);
 207:   if (TRACE) {
 208:    if (request->authorization)
 209:      fprintf(stderr, "HTTP: Sending Authorization: %s\n",
 210:          request->authorization);
 211:    else
 212:      fprintf(stderr, "HTTP: Not sending authorization (yet)\n");
1.15 luotonen 213:   }
 214: #endif /* ACCESS_AUTH */
1.1 timbl 215:  
1.10 timbl 216: /*   Now, let's get a socket set up from the server for the data:
1.1 timbl 217: */   
 218: #ifdef DECNET
 219:   s = socket(AF_DECnet, SOCK_STREAM, 0);
 220: #else
 221:   s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
 222: #endif
 223:   status = connect(s, (struct sockaddr*)&soc_address, sizeof(soc_address));
 224:   if (status < 0) {
 225:      if (TRACE) fprintf(stderr, 
1.30 frystyk 226:       "HTTP: Unable to connect to remote host for `%s' (errno = %d).\n",
 227:       arg, errno);
1.51 luotonen 228:      HTAddError2(request,"Unable to connect to remote host:",
 229:            HTErrnoString());
1.1 timbl 230:      return HTInetStatus("connect");
 231:    }
 232:   
 233:   if (TRACE) fprintf(stderr, "HTTP connected, socket %d\n", s);
 234: 
1.17 timbl 235: 
 236: /*   Compose and send command
 237: **   ------------------------
 238: */
 239:   {
 240:     char *command;         /* The whole command */
 241:    
1.1 timbl 242: /*   Ask that node for the document,
 243: **   omitting the host name & anchor if not gatewayed.
 244: */    
1.37 luotonen 245:    if (gate) { /* This is no longer used, and could be thrown away */
1.17 timbl 246:      command = malloc(4 + strlen(arg)+ 2 + 31);
 247:      if (command == NULL) outofmem(__FILE__, "HTLoadHTTP");
 248:      strcpy(command, "GET ");
 249:      strcat(command, arg);
 250:    } else { /* not gatewayed */
 251:      char * p1 = HTParse(arg, "", PARSE_PATH|PARSE_PUNCTUATION);
 252:      command = malloc(4 + strlen(p1)+ 2 + 31);
 253:      if (command == NULL) outofmem(__FILE__, "HTLoadHTTP");
1.23 luotonen 254:      if (request->method != METHOD_INVALID) {
 255:        strcpy(command, HTMethod_name(request->method));
1.22 luotonen 256:        strcat(command, " ");
 257:      }
 258:      else {
 259:        strcpy(command, "GET ");
 260:      }
1.37 luotonen 261:      /* if we are using a proxy gateway don't copy in the first slash
 262:      ** of say: /gopher://a;lkdjfl;ajdf;lkj/;aldk/adflj
 263:      ** so that just gohper://.... is sent.
 264:      */
 265:      if (using_proxy)
 266:        strcat(command, p1+1);
 267:      else
 268:        strcat(command, p1);
1.17 timbl 269:      free(p1);
 270:    }
1.2 timbl 271: #ifdef HTTP2
1.17 timbl 272:    if (extensions) {
 273:      strcat(command, " ");
 274:      strcat(command, HTTP_VERSION);
 275:    }
1.2 timbl 276: #endif
1.17 timbl 277:   
 278:    strcat(command, crlf); /* CR LF, as in rfc 977 */
 279:   
1.37 luotonen 280:    if (extensions && HTImProxy && HTProxyHeaders) {
 281:      StrAllocCat(command, HTProxyHeaders);
 282:    }
 283:    else if (extensions) {
1.21 luotonen 284: 
1.17 timbl 285:      int i;
 286:      HTAtom * present = WWW_PRESENT;
 287:      char line[256];  /*@@@@ */
1.21 luotonen 288:      HTList *conversions[2];
 289: 
1.22 luotonen 290:      if (!HTConversions) {
 291:        HTConversions = HTList_new();
1.34 frystyk 292: /*       HTFormatInit(HTConversions);  App may do this not us tbl940210 */
1.22 luotonen 293:      }
1.28 timbl 294: 
1.21 luotonen 295:      conversions[0] = HTConversions;
 296:      conversions[1] = request->conversions;
 297: 
1.34 frystyk 298:      
1.21 luotonen 299:      for (i=0; i<2; i++) {
 300:        HTList *cur = conversions[i];
 301:        HTPresentation *pres;
 302: 
 303:        while ((pres = (HTPresentation*)HTList_nextObject(cur))) {
 304:          if (pres->rep_out == present) {
 305:            if (pres->quality != 1.0) {
1.35 frystyk 306:              sprintf(line, "Accept: %s; q=%.3f%c%c",
1.21 luotonen 307:                  HTAtom_name(pres->rep),
 308:                  pres->quality, CR, LF);
 309:            } else {
 310:              sprintf(line, "Accept: %s%c%c",
 311:                  HTAtom_name(pres->rep), CR, LF);
 312:            }
 313:            StrAllocCat(command, line);
1.17 timbl 314:          }
 315:        }
1.2 timbl 316:      }
1.22 luotonen 317: 
1.37 luotonen 318:      sprintf(line, "User-Agent: %s/%s libwww/%s%c%c",
1.17 timbl 319:          HTAppName ? HTAppName : "unknown",
 320:          HTAppVersion ? HTAppVersion : "0.0",
 321:          HTLibraryVersion, CR, LF);
1.37 luotonen 322:      StrAllocCat(command, line);
1.45 luotonen 323: 
 324: #ifdef ACCESS_AUTH
 325:      if (request->authorization != NULL) {
 326:        sprintf(line, "Authorization: %s%c%c",
 327:            request->authorization, CR, LF);
 328:        StrAllocCat(command, line);
 329:      }
 330: #endif /* ACCESS_AUTH */
 331: 
1.37 luotonen 332:    }
1.22 luotonen 333: 
1.17 timbl 334:    StrAllocCat(command, crlf);   /* Blank line means "end" */
 335:   
 336:    if (TRACE) fprintf(stderr, "HTTP Tx: %s\n", command);
 337:   
 338:   /* Translate into ASCII if necessary
 339:   */
1.4 timbl 340: #ifdef NOT_ASCII
1.17 timbl 341:    {
 342:      char * p;
 343:      for(p = command; *p; p++) {
 344:        *p = TOASCII(*p);
 345:      }
1.1 timbl 346:    }
1.3 timbl 347: #endif
1.17 timbl 348:   
 349:    status = NETWRITE(s, command, (int)strlen(command));
 350:    free(command);
 351:    if (status<0) {
 352:      if (TRACE) fprintf(stderr,
 353:        "HTTPAccess: Unable to send command.\n");
1.51 luotonen 354:      HTAddError2(request,"Couldn't send request:",HTErrnoString());
1.1 timbl 355:      return HTInetStatus("send");
1.17 timbl 356:    }
 357:   } /* compose and send command */
 358:   
1.2 timbl 359: 
1.17 timbl 360: /*   Read the response
 361: **   -----------------
1.11 timbl 362: **
 363: **   HTTP0 servers must return ASCII style text, though it can in
 364: **   principle be just text without any markup at all.
 365: **   Full HTTP servers must return a response
 366: **   line and RFC822 style header. The response must therefore in
 367: **   either case have a CRLF somewhere soon.
 368: **
 369: **   This is the theory. In practice, there are (1993) unfortunately
 370: **   many binary documents just served up with HTTP0.9. This
 371: **   means we have to preserve the binary buffer (on the assumption that
 372: **   conversion from ASCII may lose information) in case it turns
 373: **   out that we want the binary original.
1.2 timbl 374: */
1.37 luotonen 375:   if (HTImProxy) {
1.24 luotonen 376: 
1.22 luotonen 377:    /*
 378:    ** Server as a gateway -- send body of the message
 379:    ** received from client (if any).
 380:    */
 381:    if (request->isoc && request->content_length > 0) {
 382:      int remain = request->content_length;
 383:      int i = remain;
 384:      char * buf;
 385: 
 386:      while (remain > 0 &&
 387:          (buf = HTInputSocket_getBlock(request->isoc, &i))) {
 388:        int status = NETWRITE(s, buf, i);
 389:        if (status < 0) {
1.27 luotonen 390:          CTRACE(stderr, "HTTPAccess.. Unable to forward body\n");
1.51 luotonen 391:          HTAddError2(request,"Couldn't forward message body:",
 392:                HTErrnoString());
1.22 luotonen 393:          return HTInetStatus("send");
 394:        }
 395:        remain -= i;
 396:        i = remain;
 397:      }
 398:    }
1.23 luotonen 399: 
 400:    /*
1.22 luotonen 401:    ** Load results directly to client
 402:    */
1.50 luotonen 403:    HTCopy(s, request->output_stream);
1.25 luotonen 404:    (*request->output_stream->isa->free)(request->output_stream);
1.37 luotonen 405: 
1.22 luotonen 406:    return HT_LOADED;
 407:   }
 408:   else {   /* read response */
1.21 luotonen 409: 
1.17 timbl 410:    HTFormat format_in;       /* Format arriving in the message */
1.21 luotonen 411:    HTInputSocket *isoc = HTInputSocket_new(s);
 412:    char * status_line = HTInputSocket_getStatusLine(isoc);
1.2 timbl 413: 
1.11 timbl 414: /* Kludge to trap binary responses from illegal HTTP0.9 servers.
 415: ** First time we have enough, look at the stub in ASCII
 416: ** and get out of here if it doesn't look right.
 417: **
 418: ** We also check for characters above 128 in the first few bytes, and
 419: ** if we find them we forget the html default.
 420: **
 421: ** Bugs: A HTTP0.9 server returning a document starting "HTTP/"
 422: **   will be taken as a HTTP 1.0 server. Failure.
 423: **   An HTTP 0.9 server returning a binary document with
 424: **   characters < 128 will be read as ASCII.
 425: */
1.36 frystyk 426: 
 427:    /* If HTTP 0 response, then DO NOT CACHE (Henrik 14/02-94) */
 428:    if (!status_line) {   
1.21 luotonen 429:      if (HTInputSocket_seemsBinary(isoc)) {
 430:        format_in = HTAtom_for("www/unknown");
 431:      }
 432:      else {
 433:        format_in = WWW_HTML;
 434:      }
1.46 frystyk 435:      cache_http = NO;  /* Do not cache */
1.21 luotonen 436:      goto copy;
 437:    } /* end kludge */
 438: 
 439:    if (status_line) {   /* Decode full HTTP response */
 440:      /*
 441:      ** We now have a terminated server status line, and we have
 442:      ** checked that it is most probably a legal one. Parse it.
 443:      */
 444:      char server_version[VERSION_LENGTH+1];
 445:      int server_status;
 446: 
 447:      if (TRACE)
 448:        fprintf(stderr, "HTTP Status Line: Rx: %.70s\n", status_line);
1.17 timbl 449:   
1.21 luotonen 450:      sscanf(status_line, "%20s%d", server_version, &server_status);
1.2 timbl 451: 
1.21 luotonen 452:      format_in = HTAtom_for("www/mime");
1.7 timbl 453:   
1.21 luotonen 454:      switch (server_status / 100) {
1.2 timbl 455: 
1.21 luotonen 456:       default:     /* bad number */
 457:        HTAlert("Unknown status reply from server!");
 458:        break;
1.17 timbl 459:          
1.21 luotonen 460:       case 3:      /* Various forms of redirection */
 461:        HTAlert(
1.17 timbl 462:      "Redirection response from server is not handled by this client");
1.21 luotonen 463:        break;
1.17 timbl 464:          
1.21 luotonen 465:       case 4:      /* Access Authorization problem */
1.14 luotonen 466: #ifdef ACCESS_AUTH
1.21 luotonen 467:        switch (server_status) {
 468:         case 401:
 469:          parse_401_headers(request, isoc);
 470: 
 471:          if (TRACE) fprintf(stderr, "%s %d %s\n",
 472:                    "HTTP: close socket", s,
 473:                    "to retry with Access Authorization");
1.24 luotonen 474:          if (HTAA_retryWithAuth(request, HTLoadHTTP)) {
1.21 luotonen 475:            status = HT_LOADED;/* @@ THIS ONLY WORKS ON LINEMODE */
 476:            goto clean_up;
 477:          }
 478:          /* else falltrough */
 479:         default:
1.14 luotonen 480:          {
1.21 luotonen 481:            char *p1 = HTParse(gate ? gate : arg, "",
 482:                      PARSE_HOST);
 483:            char * message;
 484: 
 485:            if (!(message = (char*)malloc(strlen(status_line) +
 486:                           strlen(p1) + 100)))
 487:              outofmem(__FILE__, "HTTP 4xx status");
1.14 luotonen 488:            sprintf(message,
1.21 luotonen 489:                "HTTP server at %s replies:\n%s\n\n%s\n",
 490:                p1, status_line,
 491:                ((server_status == 401) 
 492:                 ? "Access Authorization package giving up.\n"
 493:                 : ""));
1.22 luotonen 494:            status = HTLoadError(request, server_status, message);
1.14 luotonen 495:            free(message);
 496:            free(p1);
 497:            goto clean_up;
 498:          }
1.21 luotonen 499:        } /* switch */
 500:        goto clean_up;
 501:        break;
 502: #else
 503:        /* case 4 without Access Authorization falls through */
 504:        /* to case 5 (previously "I think I goofed"). -- AL */
 505: #endif /* ACCESS_AUTH */
 506: 
 507:       case 5:      /* I think you goofed */
 508:        {
 509:          char *p1 = HTParse(gate ? gate : arg, "", PARSE_HOST);
 510:          char * message = (char*)malloc(strlen(status_line) + 
 511:                          strlen(p1) + 100);
 512:          if (!message) outofmem(__FILE__, "HTTP 5xx status");
 513:          sprintf(message,
 514:              "HTTP server at %s replies:\n%s", p1, status_line);
1.22 luotonen 515:          status = HTLoadError(request, server_status, message);
1.21 luotonen 516:          free(message);
 517:          free(p1);
 518:          goto clean_up;
 519:        }
 520:        break;
1.17 timbl 521:          
1.21 luotonen 522:       case 2:      /* Good: Got MIME object */
 523:        break;
1.17 timbl 524:   
1.21 luotonen 525:      } /* switch on response code */
1.17 timbl 526:      
1.21 luotonen 527:    } /* Full HTTP reply */
1.17 timbl 528:      
 529:   
1.3 timbl 530: /*   Set up the stream stack to handle the body of the message
1.33 timbl 531: **
 532: **   In the special case of user asking for source and the message
 533: **   being in MIME, we force the MIME decoding to occur, as it is really
 534: **   HTTP decoding. If the user really wants the HTTP headers, he
 535: **   can ask for them as www/mime.
1.3 timbl 536: */
1.21 luotonen 537: 
1.13 duns 538: copy:
1.21 luotonen 539: 
1.43 frystyk 540:    if ((format_in == WWW_MIME)
 541:      && (request->output_format == WWW_SOURCE)) {
1.33 timbl 542:      target = HTMIMEConvert(request, NULL, format_in,
 543:      request->output_format, request->output_stream);
 544:    } else {
1.47 luotonen 545:      target = HTStreamStack(format_in, request, NO);
1.33 timbl 546:    }
 547:    
1.17 timbl 548:    if (!target) {
 549:      char buffer[1024]; /* @@@@@@@@ */
 550:      sprintf(buffer, "Sorry, no known way of converting %s to %s.",
 551:          HTAtom_name(format_in), HTAtom_name(request->output_format));
 552:      fprintf(stderr, "HTTP: %s", buffer);
1.22 luotonen 553:      status = HTLoadError(request, 501, buffer);
1.17 timbl 554:      goto clean_up;
 555:    }
 556:   
1.19 timbl 557:     /* @@ Bug: The decision of whether or not to cache should also be
1.21 luotonen 558:    ** made contingent on a IP address match or non match.
 559:    */
1.48 timbl 560: 
 561:     if (HTCacheDir && cache_http) {
1.19 timbl 562:      target = HTTee(target, HTCacheWriter(request, NULL, format_in,
1.21 luotonen 563:                         request->output_format,
 564:                         request->output_stream));
1.19 timbl 565:    }
 566:    
1.11 timbl 567: /*   Push the data down the stream
1.3 timbl 568: **   We have to remember the end of the first buffer we just read
1.2 timbl 569: */
1.30 frystyk 570:    if (format_in == WWW_HTML) { 
1.17 timbl 571:      target = HTNetToText(target);    /* Pipe through CR stripper */
 572:    }
1.21 luotonen 573: 
1.17 timbl 574:    (*target->isa->put_block)(target,
1.21 luotonen 575:                 isoc->input_pointer,
 576:                 isoc->input_limit - isoc->input_pointer);
1.41 frystyk 577: 
1.17 timbl 578:    HTCopy(s, target);
 579:      
 580:    (*target->isa->free)(target);
 581:    status = HT_LOADED;
1.11 timbl 582:   
1.2 timbl 583: /*   Clean up
1.1 timbl 584: */
1.17 timbl 585:    
 586: clean_up: 
 587:    if (TRACE) fprintf(stderr, "HTTP: close socket %d.\n", s);
 588:    (void) NETCLOSE(s);
1.41 frystyk 589:    if (isoc)
 590:      HTInputSocket_free(isoc);    
 591:    if (status_line)
1.38 frystyk 592:      free(status_line);     /* Leak fix Henrik 18/02-94 */
 593:    return status;         /* Good return */
1.3 timbl 594:   
1.17 timbl 595:   } /* read response */
 596: } /* load HTTP */
1.1 timbl 597: 
 598: /*   Protocol descriptor
 599: */
 600: 
1.17 timbl 601: GLOBALDEF PUBLIC HTProtocol HTTP = { "http", HTLoadHTTP, 0, 0 };
1.21 luotonen 602: 

Webmaster

AltStyle によって変換されたページ (->オリジナル) /