我在我们的软件中有一个错误,当我收到连接超时时发生。这些错误是非常罕见的(通常是当我的连接被我们的内部网络丢弃时)。我怎样才能人为地产生这种效果来测试我们的软件呢?

如果重要,应用程序是用c++ /MFC编写的,使用CAsyncSocket类。

编辑:

我尝试使用一个不存在的主机,我得到套接字错误:

无效的参数

我的下一个尝试是使用Alexander的建议,连接到不同的端口,例如81(在我自己的服务器上)。这很有效。与断开连接完全相同(等待60秒,然后出错)。谢谢你!


当前回答

连接到一个现有的主机,但是连接到一个被防火墙阻塞的端口,防火墙只是丢弃TCP SYN包。例如:www.google.com:81。

其他回答

Depending on what firewall software you have installed/available, you should be able to block the outgoing port and depending on how your firewall is setup it should just drop the connection request packet. No connection request, no connection, timeout ensues. This would probably work better if it was implemented at a router level (they tend to drop packets instead of sending resets, or whatever the equivalent is for the situation) but there's bound to be a software package that'd do the trick too.

您可以安装Microsoft Loopback驱动程序,它将为您创建一个单独的接口。然后,您可以在它上连接到您的某些服务(您自己的主机)。然后在网络连接中,你可以禁用/启用这样的接口…

您可以尝试在外部端口(例如200)上连接到一个知名的Web站点。大多数防火墙都在DROP模式下工作,它会为你模拟超时。

把你的网线插到没有其他连接/电缆的交换机上。恕我直言,这应该有用。

我和你有同样的问题。为了测试软件的行为,我只是在适当的时候拔掉了网线。在我想拔掉电缆之前,我必须设置一个断点。

如果让我再做一次,我会在网线上放一个开关(一个正常关闭的瞬间按钮)。

如果物理断开导致不同的行为,您可以将您的计算机连接到一个便宜的集线器,并在集线器和主网络之间放置我上面提到的开关。

——编辑—— 在许多情况下,您需要网络连接一直工作到程序中的某个点,然后您将希望使用提供的许多建议之一断开连接。