1

我是 HTTP 新手,正在开发一个应用代理。我想避免为操作定义超时,而是依靠客户端来关闭连接。我想知道这是否可能?

这是一个非常愚蠢的伪代码

void handle_request(Request http_request, Response http_response)
{
   string modified_request = parse(http_request);
   response_from_server = remote_server->send_request(modified_request);
   while(true) {
     if(response_from_server ->wait_for_data(1000 /* milliseconds */)) {
       http_response->write_data(response_from_server->read_data());
       continue;
     }

     if(!http_response.check_if_the_client_connection_to_me_is_still_active()) // how to do this?
         return;
     }
   }
}

另一种方法是:

  1. 在 HTTP 代理中,我可以使用远程客户端和远程服务器的超时而不添加另一个超时吗?
  2. 如何检测远程服务器或远程客户端超时?

顺便说一句,我正在使用 Poco 在 C++ 中进行开发。

4

1 回答 1

1

不使用超时就无法编写严肃的 TCP 应用程序。在某些情况下,它们是您在阅读时检测断开连接的唯一方法。TCP 提供以下方法来检测断开的连接:

  1. 读取的各种 EOS 条件。
  2. 写入或偶尔读取时“连接重置”。
  3. 读取超时。

而已。没有了。

您还应该从您的终端启用 TCP keepalive,但这只会在两个小时后启动。

于 2012-05-25T01:09:34.843 回答