summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-23 05:22:09 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-23 05:22:09 +0000
commit27389fea6862ac6ce9115e6e19948ff86bd09d8b (patch)
tree70599cd797d815868c8785202ae6ff36ac4f1af8
parentbe86c109229325b5d39d162e78b7c5b3e301b795 (diff)
downloadATCD-27389fea6862ac6ce9115e6e19948ff86bd09d8b.tar.gz
ChangeLogTag:Fri Jul 23 00:07:38 1999 Irfan Pyarali <irfan@cs.wustl.edu>
-rw-r--r--ChangeLog-99b8
-rw-r--r--tests/Cached_Accept_Conn_Test.cpp2
-rw-r--r--tests/Cached_Conn_Test.cpp2
3 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index c39cbe8085a..7adca2c4e97 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,11 @@
+Fri Jul 23 00:07:38 1999 Irfan Pyarali <irfan@cs.wustl.edu>
+
+ * tests/Cached_Conn_Test.cpp (cached_connect):
+ * tests/Cached_Accept_Conn_Test.cpp (cached_connect):
+
+ Host of the remote address should be ACE_LOCALHOST instead of
+ ACE_DEFAULT_SERVER_HOST.
+
Thu Jul 22 23:23:26 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Handle_Gobbler.h (class ACE_Handle_Gobbler): Inlined
diff --git a/tests/Cached_Accept_Conn_Test.cpp b/tests/Cached_Accept_Conn_Test.cpp
index 3e2a296859a..7452f9df092 100644
--- a/tests/Cached_Accept_Conn_Test.cpp
+++ b/tests/Cached_Accept_Conn_Test.cpp
@@ -313,7 +313,7 @@ cached_connect (STRATEGY_CONNECTOR &con,
{
// This will make sure we get the host information correct.
ACE_INET_Addr remote_addr (server_addr.get_port_number (),
- ACE_DEFAULT_SERVER_HOST);
+ ACE_LOCALHOST);
// Perform a blocking connect to the server using the Strategy
// Connector with a connection caching strategy.
diff --git a/tests/Cached_Conn_Test.cpp b/tests/Cached_Conn_Test.cpp
index c6969333038..70d0134f794 100644
--- a/tests/Cached_Conn_Test.cpp
+++ b/tests/Cached_Conn_Test.cpp
@@ -208,7 +208,7 @@ cached_connect (STRATEGY_CONNECTOR &con,
{
// This will make sure we get the host information correct.
ACE_INET_Addr remote_addr (server_addr.get_port_number (),
- ACE_DEFAULT_SERVER_HOST);
+ ACE_LOCALHOST);
// Perform a blocking connect to the server using the Strategy
// Connector with a connection caching strategy.