summaryrefslogtreecommitdiff
path: root/ACE/tests/Dev_Poll_Reactor_Test.cpp
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2007-06-27 13:51:52 +0000
committerSteve Huston <shuston@riverace.com>2007-06-27 13:51:52 +0000
commitd92a4bf09215e5fbb701f8cab93fd7b00a588bf1 (patch)
tree6c806ae81724ad881771f9f04716ff88aa21b16d /ACE/tests/Dev_Poll_Reactor_Test.cpp
parent1af9f19025d7cbae5130743574bfd3fc7afdd968 (diff)
downloadATCD-d92a4bf09215e5fbb701f8cab93fd7b00a588bf1.tar.gz
ChangeLogTag:Wed Jun 27 13:48:50 UTC 2007 Steve Huston <shuston@riverace.com>
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 ")