使用lwip的HTTP GET会在中途停止

时间:2014-10-23 12:05:26

标签: http http-get lwip

我正在使用lwip作为客户端从服务器执行HTTP GET。我希望收到的文件大约是75kB。我正确地获得了第一个~9kB但是没有更多的数据到达。到达堆栈的每个数据包都已正确确认。

要缩短一小段代码,我使用netconn接口和以下命令。没有错误,直到几个数据包到达,此后netconn_recv开始给出超时,直到大约15分钟后服务器发送一个数据包来关闭连接(这告诉我连接至少在某种意义上仍然有效)。

#define HTTP_GET_TEMPLATE "GET /%s HTTP/1.0\r\nHost: %s\r\n\r\n"

addr = <the ip address I'm talking to>
location = <location of the filename on the host>
host = <hostname>

upg = netconn_new(NETCONN_TCP);
netconn_set_recvtimeout(upg, 30000);
err = netconn_bind(upg, IP_ADDR_ANY, 0);
err = netconn_connect(upg, &addr, 80);
sprintf(request, HTTP_GET_TEMPLATE, location, host);
siRc = netconn_write(upg, request, (strlen(request)+1)*sizeof(char), NETCONN_COPY);
while (true)
{
    err = netconn_recv(upg, &netbuf);
    if (ERR_IS_FATAL(err))
    {
        break;
    }
    if (err == ERR_OK)
    {
        do
        {
            err = netbuf_data(netbuf, &data, &len);
            < handle the data in "data">
        } while (netbuf_next(netbuf) >= 0);

        netbuf_delete(netbuf);
    }
}

任何人都可以给我任何关于下一步尝试的提示吗?感谢

0 个答案:

没有答案