红联Linux门户
Linux帮助

如何 在 tcp client代码上添加代理 ? 谢谢

发布时间:2009-04-13 16:28:08来源:红联作者:dprk
先写了个tcp socket的 C/S 程序
现在 想写一个程序 命令行的 给出网络地址 获取网页内容, 但是要通过代理访问指定的网页,网页内容也由代理返回


应该怎么添加代码呢 ?

下面是tcp client 代码
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include

#define SERVERPORT 8888
#define MAXBUF 1024

int main(int argc, char* argv[])
{
int sockd;
int counter;
int fd;
struct sockaddr_in xferServer;
char buf[MAXBUF];
int returnStatus;

if (argc < 3)
{
fprintf(stderr, "Usage: %s [dest filename]\n",
argv[0]);
exit(1);
}
/* create a socket */
sockd = socket(AF_INET, SOCK_STREAM, 0);
if (sockd == -1)
{
fprintf(stderr, "Could not create socket!\n");
exit(1);
}
/* set up the server information */
xferServer.sin_family = AF_INET;
xferServer.sin_addr.s_addr = inet_addr(argv[1]);
xferServer.sin_port = htons(SERVERPORT);
/* connect to the server */
returnStatus = connect(sockd,
(struct sockaddr*)&xferServer,
sizeof(xferServer));
if (returnStatus == -1)
{
fprintf(stderr, "Could not connect to server!\n");
exit(1);
}

/* send the name of the file we want to the server */
returnStatus = write(sockd, argv[2], strlen(argv[2])+1);
if (returnStatus == -1)
{
fprintf(stderr, "Could not send filename to server!\n");
exit(1);
}

/* call shutdown to set our socket to read-only */
shutdown(sockd, SHUT_WR);

/* open up a handle to our destination file to receive the contents */
/* from the server */
fd = open(argv[3], O_WRONLY | O_CREAT | O_APPEND);
if (fd == -1)
{
fprintf(stderr, "Could not open destination file, using stdout.\n");
fd = 1;
}

/* read the file from the socket as long as there is data */
int i = 0;
while ((counter = read(sockd, buf, MAXBUF)) > 0)
{
/* send the contents to stdout */
fprintf(stdout, "write for the %d time \n", ++i);
write(fd, buf, counter);
}
if (counter == -1)
{
fprintf(stderr, "Could not read file from socket!\n");
exit(1);
}
close(sockd);
return 0;
}

请帮忙, 谢谢。
文章评论

共有 4 条评论

  1. dprk 于 2009-04-15 09:34:22发表:

    谢谢楼上

  2. wang7131984 于 2009-04-14 14:05:12发表:

    可以到中国协议网查看HTTP协议中关于代理的描述,详细对你的这段程序有帮助。HTTP头中应该有关于代理的处理吧。

  3. dprk 于 2009-04-14 11:54:25发表:

    在网上找了段代码如下
    /******* http客户端程序 httpclient.c ************/
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include

    //////////////////////////////httpclient.c 开始///////////////////////////////////////////


    /********************************************
    功能:搜索字符串右边起的第一个匹配字符
    ********************************************/
    char * Rstrchr(char * s, char x) {
    int i = strlen(s);
    if(!(*s)) return 0;
    while(s[i-1]) if(strchr(s + (i - 1), x)) return (s + (i - 1)); else i--;
    return 0;
    }

    /********************************************
    功能:把字符串转换为全小写
    ********************************************/
    void ToLowerCase(char * s) {
    while(s && *s) {*s=tolower(*s);s++;}
    }

    /**************************************************************
    功能:从字符串src中分析出网站地址和端口,并得到用户要下载的文件
    ***************************************************************/
    void GetHost(char * src, char * web, char * file, int * port) {
    char * pA;
    char * pB;
    memset(web, 0, sizeof(web));
    memset(file, 0, sizeof(file));
    *port = 0;
    if(!(*src)) return;
    pA = src;
    if(!strncmp(pA, "http://", strlen("http://"))) pA = src+strlen("http://");
    else if(!strncmp(pA, "https://", strlen("https://"))) pA = src+strlen("https://");
    pB = strchr(pA, '/');
    if(pB) {
    memcpy(web, pA, strlen(pA) - strlen(pB));
    if(pB+1) {
    memcpy(file, pB + 1, strlen(pB) - 1);
    file[strlen(pB) - 1] = 0;
    }
    }
    else memcpy(web, pA, strlen(pA));
    if(pB) web[strlen(pA) - strlen(pB)] = 0;
    else web[strlen(pA)] = 0;
    pA = strchr(web, ':');
    if(pA) *port = atoi(pA + 1);
    else *port = 80;
    }


    int main(int argc, char *argv[])
    {
    int sockfd;
    char buffer[1024];
    struct sockaddr_in server_addr;
    struct hostent *host;
    int portnumber,nbytes;
    char host_addr[256];
    char host_file[1024];
    char local_file[256];
    FILE * fp;
    char request[1024];
    int send, totalsend;
    int i;
    char * pt;

    if(argc!=2)
    {
    fprintf(stderr,"Usage:%s web-address\a\n",argv[0]);
    exit(1);
    }
    printf("parameter.1 is: %s\n", argv[1]);
    ToLowerCase(argv[1]);/*将参数转换为全小写*/
    printf("lowercase parameter.1 is: %s\n", argv[1]);

    GetHost(argv[1], host_addr, host_file, &portnumber);/*分析网址、端口、文件名等*/
    printf("webhost:%s\n", host_addr);
    printf("hostfile:%s\n", host_file);
    printf("portnumber:%d\n\n", portnumber);

    if((host=gethostbyname(host_addr))==NULL)/*取得主机IP地址*/
    {
    fprintf(stderr,"Gethostname error, %s\n", strerror(errno));
    exit(1);
    }

    /* 客户程序开始建立 sockfd描述符 */
    if((sockfd=socket(AF_INET,SOCK_STREAM,0))==-1)/*建立SOCKET连接*/
    {
    fprintf(stderr,"Socket Error:%s\a\n",strerror(errno));
    exit(1);
    }

    /* 客户程序填充服务端的资料 */
    bzero(&server_addr,sizeof(server_addr));
    server_addr.sin_family=AF_INET;
    server_addr.sin_port=htons(portnumber);
    server_addr.sin_addr=*((struct in_addr *)host->h_addr);

    /* 客户程序发起连接请求 */
    if(connect(sockfd,(struct sockaddr *)(&server_addr),sizeof(struct sockaddr))==-1)/*连接网站*/
    {
    fprintf(stderr,"Connect Error:%s\a\n",strerror(errno));
    exit(1);
    }

    sprintf(request, "GET /%s HTTP/1.1\r\nAccept: */*\r\nAccept-Language: zh-cn\r\n\
    User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)\r\n\
    Host: %s:%d\r\nConnection: Close\r\n\r\n", host_file, host_addr, portnumber);
    printf("%s", request);/*准备request,将要发送给主机*/

    /*取得真实的文件名*/
    if(host_file && *host_file) pt = Rstrchr(host_file, '/');
    else pt = 0;

    memset(local_file, 0, sizeof(local_file));
    if(pt && *pt) {
    if((pt + 1) && *(pt+1)) strcpy(local_file, pt + 1);
    else memcpy(local_file, host_file, strlen(host_file) - 1);
    }
    else if(host_file && *host_file) strcpy(local_file, host_file);
    else strcpy(local_file, "index.html");
    printf("local filename to write:%s\n\n", local_file);

    /*发送http请求request*/
    send = 0;totalsend = 0;
    nbytes=strlen(request);
    while(totalsend < nbytes) {
    send = write(sockfd, request + totalsend, nbytes - totalsend);
    if(send==-1) {printf("send error!%s\n", strerror(errno));exit(0);}
    totalsend+=send;
    printf("%d bytes send OK!\n", totalsend);
    }

    fp = fopen(local_file, "a");
    if(!fp) {
    printf("create file error! %s\n", strerror(errno));
    return 0;
    }
    printf("\nThe following is the response header:\n");
    i=0;
    /* 连接成功了,接收http响应,response */
    while((nbytes=read(sockfd,buffer,1))==1)
    {
    if(i < 4) {
    if(buffer[0] == '\r' || buffer[0] == '\n') i++;
    else i = 0;
    printf("%c", buffer[0]);/*把http头信息打印在屏幕上*/
    }
    else {
    fwrite(buffer, 1, 1, fp);/*将http主体信息写入文件*/
    i++;
    if(i%1024 == 0) fflush(fp);/*每1K时存盘一次*/
    }
    }
    fclose(fp);
    /* 结束通讯 */
    close(sockfd);
    exit(0);
    }
    我就是想要类似功能的 就是在这代码上添加 通过代理发送请求和接收返回的 功能
    但是对关于代理那块不明白 清高手指点 假定我的代理是 192.168.81.4:808
    另外 上面这段代码对于某些网站不行, 也请各位帮忙

    谢谢

  4. wang7131984 于 2009-04-13 21:24:52发表:

    C/S和B/S是两个概念....,如果你想通过命令行来获取网页,首先要编写HTTP协议解析器,HTML协议解析器以及各种格式的协议解析器。实际这毫无意义,直接telnet到80端口,再使用http协议的命令就可以获取一个网页(当是没有对HTML进行解析)。不知道你到底要编写什么东西,还是分清这些概念吧。