0

这是来自http服务器的数据接收功能代码,完美工作..但我想在这个功能中添加暂停和恢复..有人可以建议我怎么做吗?
注意:忽略变量声明。

int rest=0,size=0,count=0;                               
memset(buffer,'\0',sizeof(buffer));
do {
    rc=read(sockfd,buffer,1500);                  //Reading from socket connection
    if(rest==0)
    {   /*Extracting Content length*/
        data=strstr((char*)buffer,"Content-Length"); 
        if(data!=NULL)
        {
            value=atoi((char*)data+15);data_rest=value;
            rest=1;
        }
    }
    if(count==0)
    {   /*Extracting Header*/
        content=strstr(buffer,"\r\n\r\n");
        if(content!=NULL)
        { 
            printf("FOUND Header END\n");
            content=content+4;count=1;
            /*copying DATA to the file which has same Extension*/
            data_wrote=fwrite(content,sizeof(char),rc-(content-buffer),fp);
        }
    }
    else
    {
        content=buffer;
        /*copying DATA to the file which has same Extension*/
        data_wrote=fwrite(content,sizeof(char),rc,fp);
    }
    size=size+rc;
    total_wrote=total_wrote+data_wrote;
    printf("Total size = %d\n",size);

    memset(buffer,'\0',sizeof(buffer));
} while(rc>0);  /*until end of file*/
4

1 回答 1

0

这是我将使用的过程:

  • 发送带有Range: bytes=0-HTTP/1.1 请求标头的初始请求。如果服务器以 响应HTTP/1.1 206 Partial content,您知道您可以稍后恢复连接。保存ETag响应标头,因为它应该保持不变,除非服务器上的内容发生更改,和/或Content-Type, 和Last- Modified标头。注意,Content-Range响应头指定了本次响应中字节的偏移量,最后一个数字是完整内容的总长度,并且Content-Length只指定了当前响应的长度(不是原始内容的长度)。

  • 只需关闭连接即可中断传输。

  • 发送带有Range: bytes=N-HTTP/1.1 请求标头的继续请求,其中N是本地副本中仍然缺少的第一个字节的偏移量。如果服务器没有响应 a HTTP/1.1 206 Partial content,则您没有办法,但必须再次下载整个内容(使用正常的 HTTP 请求处理)。如果ETagContent-TypeLast-Modified响应标头不匹配,则可能是服务器上的内容已被修改,您应该断开此连接并下载完整的请求。响应头指定了本Content-Range次响应中字节的偏移量,最后一个数字是完整内容的总长度,并且Content-Length只指定了当前响应的长度(不是原始内容的长度)。

在所有情况下,服务器都可能使用chunked内容传输编码,因此您必须准备好处理它,因为请求是 HTTP 1.1。有关详细信息,请参阅RFC2616

当您对此进行测试时,我建议您使用一个简单的 Bash 脚本使用您的自定义标头连接到某个 URL,并将响应标头输出到标准错误并将消息内容输出到标准输出:

#!/bin/bash

Host="localhost"   # Host name, use your own servers
Port="80"
Query="/"          # Path to the content requested
Range="0-"         # Byte range requested

# Open up a connection
exec 3<>/dev/tcp/$Host/$Port || exit $?

# Set up a reader sub-shell that will flush the headers
# to standard error, and content to standard out.
(   Headers=1
    while read Line ; do
        Line="${Line//$'\r'/}"
        if [ -z "$Line" ]; then
            Headers=0
        elif [ $Headers -gt 0 ]; then
            printf '%s\n' "$Line" >&2
        else
            printf '%s\n' "$Line"
        fi
    done
    exit 0
) <&3 &

# Construct a byte-range request:
Request=""
Request="$Request""GET $Query HTTP/1.1"$'\r\n'
Request="$Request""Host: $Host"$'\r\n'
Request="$Request""Range: bytes=$Range"$'\r\n'
Request="$Request""Connection: close"$'\r\n'

# Do a normal request.
printf '%s\r\n' "$Request" >&3

# Close the connection (the read end is still open).
exec 3>&-

# and wait for the request to complete.
wait

上面不是 HTTP 客户端,不做分块传输,例如;它只是一个调试工具,您可以使用它来准确查看从服务器流向客户端的数据。

于 2012-11-02T16:31:29.950 回答