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

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

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

Webmaster

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