summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2003-05-20 16:09:49 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2003-05-20 16:09:49 +0000
commite402cc20aa38b5d1779c7897f743c39db61eec24 (patch)
tree9b3ec758f139b6faa1884733ed81938aff2c5299 /tests
parent25fa70d4f18580fb73b689de27698b8b6f322672 (diff)
downloadATCD-e402cc20aa38b5d1779c7897f743c39db61eec24.tar.gz
ChangeLogTag:Tue May 20 10:54:10 2003 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'tests')
-rw-r--r--tests/Proactor_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Proactor_Test.cpp b/tests/Proactor_Test.cpp
index 2098ca2562b..df2b9b3005a 100644
--- a/tests/Proactor_Test.cpp
+++ b/tests/Proactor_Test.cpp
@@ -644,7 +644,7 @@ Receiver::open (ACE_HANDLE handle, ACE_Message_Block &)
this->handle_ = handle;
int nodelay = 1;
ACE_SOCK_Stream option_setter (handle);
- if (-1 == option_setter.set_option (IPPROTO_TCP,
+ if (-1 == option_setter.set_option (ACE_IPPROTO_TCP,
TCP_NODELAY,
&nodelay,
sizeof (nodelay)))
@@ -1293,7 +1293,7 @@ Sender::open (ACE_HANDLE handle, ACE_Message_Block &)
this->handle_ = handle;
int nodelay = 1;
ACE_SOCK_Stream option_setter (handle);
- if (option_setter.set_option (IPPROTO_TCP,
+ if (option_setter.set_option (ACE_IPPROTO_TCP,
TCP_NODELAY,
&nodelay,
sizeof (nodelay)))