summaryrefslogtreecommitdiff
path: root/ACE/tests/Dev_Poll_Reactor_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Dev_Poll_Reactor_Test.cpp')
-rw-r--r--ACE/tests/Dev_Poll_Reactor_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Dev_Poll_Reactor_Test.cpp b/ACE/tests/Dev_Poll_Reactor_Test.cpp
index 66ed41cad00..450eb0a5588 100644
--- a/ACE/tests/Dev_Poll_Reactor_Test.cpp
+++ b/ACE/tests/Dev_Poll_Reactor_Test.cpp
@@ -130,7 +130,7 @@ Client::handle_output (ACE_HANDLE)
{
if (errno == EWOULDBLOCK)
return 0; // Flow control kicked in.
- else if (errno == EPIPE)
+ else if (errno == EPIPE || errno == ECONNRESET)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%t) Client::handle_output; server ")