http.c
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:4k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /***************************************
  2.   $Header: /home/amb/wwwoffle/RCS/http.c 1.19 1999/12/23 20:57:56 amb Exp $
  3.   WWWOFFLE - World Wide Web Offline Explorer - Version 2.5d.
  4.   Functions for getting URLs using HTTP.
  5.   ******************/ /******************
  6.   Written by Andrew M. Bishop
  7.   This file Copyright 1997,98,99 Andrew M. Bishop
  8.   It may be distributed under the GNU Public License, version 2, or
  9.   any higher version.  See section COPYING of the GNU Public license
  10.   for conditions under which this file may be redistributed.
  11.   ***************************************/
  12. #include <stdlib.h>
  13. #include <string.h>
  14. #include <unistd.h>
  15. #include "wwwoffle.h"
  16. #include "errors.h"
  17. #include "misc.h"
  18. #include "config.h"
  19. #include "sockets.h"
  20. #include "proto.h"
  21. /*+ Set to the name of the proxy if there is one. +*/
  22. static char *proxy=NULL;
  23. /*+ The file descriptor of the server. +*/
  24. static int server=-1;
  25. /*++++++++++++++++++++++++++++++++++++++
  26.   Open a connection to get a URL using HTTP.
  27.   char *HTTP_Open Returns NULL on success, a useful message on error.
  28.   URL *Url The URL to open.
  29.   ++++++++++++++++++++++++++++++++++++++*/
  30. char *HTTP_Open(URL *Url)
  31. {
  32.  char *msg=NULL;
  33.  char *colon;
  34.  char *server_host=NULL;
  35.  int server_port=Protocols[Protocol_HTTP].defport;
  36.  proxy=WhichProxy(Url->proto,Url->host);
  37.  if(IsLocalNetHost(Url->host))
  38.     proxy=NULL;
  39.  if(proxy)
  40.    {
  41.     server_host=(char*)malloc(strlen(proxy)+1);
  42.     strcpy(server_host,proxy);
  43.    }
  44.  else
  45.    {
  46.     server_host=(char*)malloc(strlen(Url->host)+1);
  47.     strcpy(server_host,Url->host);
  48.    }
  49.  if((colon=strchr(server_host,':')))
  50.    {
  51.     *colon++=0;
  52.     if(*colon)
  53.        server_port=atoi(colon);
  54.    }
  55.  /* Open the connection. */
  56.  server=OpenClientSocket(server_host,server_port,ConnectTimeout);
  57.  init_buffer(server);
  58.  if(server==-1)
  59.     msg=PrintMessage(Warning,"Cannot open the HTTP connection to %s port %d; [%!s].",server_host,server_port);
  60.  free(server_host);
  61.  return(msg);
  62. }
  63. /*++++++++++++++++++++++++++++++++++++++
  64.   Write to the server to request the URL.
  65.   char *HTTP_Request Returns NULL on success, a useful message on error.
  66.   URL *Url The URL to get.
  67.   Header *request_head The head of the HTTP request for the URL.
  68.   Body *request_body The body of the HTTP request for the URL.
  69.   ++++++++++++++++++++++++++++++++++++++*/
  70. char *HTTP_Request(URL *Url,Header *request_head,Body *request_body)
  71. {
  72.  char *msg=NULL,*head;
  73.  if(proxy)
  74.     MakeRequestAuthorised(proxy,request_head);
  75.  else
  76.     MakeRequestNonProxy(request_head);
  77.  head=HeaderString(request_head);
  78.  if(proxy)
  79.     PrintMessage(ExtraDebug,"Outgoing Request Head (to proxy)n%s",head);
  80.  else
  81.     PrintMessage(ExtraDebug,"Outgoing Request Head (to server)n%s",head);
  82.  if(write_string(server,head)==-1)
  83.     msg=PrintMessage(Warning,"Failed to write to remote HTTP %s [%!s].",proxy?"proxy":"server");
  84.  if(request_body)
  85.    {
  86. #if 0
  87.     if(request_body->content[request_body->length-1]!='n')
  88.       {
  89.        request_body->content[request_body->length++]='r';
  90.        request_body->content[request_body->length++]='n';
  91.       }
  92. #endif
  93.     if(write_data(server,request_body->content,request_body->length)==-1)
  94.        msg=PrintMessage(Warning,"Failed to write to remote HTTP %s [%!s].",proxy?"proxy":"server");
  95.    }
  96.  free(head);
  97.  return(msg);
  98. }
  99. /*++++++++++++++++++++++++++++++++++++++
  100.   Read a line from the header of the reply for the URL.
  101.   char *HTTP_ReadHead Returns the next line of data, NULL on EOF.
  102.   char *line The previous line read.
  103.   ++++++++++++++++++++++++++++++++++++++*/
  104. char *HTTP_ReadHead(char *line)
  105. {
  106.  return(read_line_or_timeout(server,line,SocketTimeout));
  107. }
  108. /*++++++++++++++++++++++++++++++++++++++
  109.   Read bytes from the body of the reply for the URL.
  110.   int HTTP_ReadBody Returns the number of bytes read on success, -1 on error.
  111.   char *s A string to fill in with the information.
  112.   int n The number of bytes to read.
  113.   ++++++++++++++++++++++++++++++++++++++*/
  114. int HTTP_ReadBody(char *s,int n)
  115. {
  116.  return(read_data_or_timeout(server,s,n,SocketTimeout));
  117. }
  118. /*++++++++++++++++++++++++++++++++++++++
  119.   Close a connection opened using HTTP.
  120.   int HTTP_Close Return 0 on success, -1 on error.
  121.   ++++++++++++++++++++++++++++++++++++++*/
  122. int HTTP_Close(void)
  123. {
  124.  return(CloseSocket(server));
  125. }