summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-04-12 23:21:22 +0000
committerSteve Huston <shuston@riverace.com>2002-04-12 23:21:22 +0000
commitf4afe54ae8a5527a4374c7636c7589ceddf47fdf (patch)
tree283a014ae28d05cc45e89d0e3ecf01c53a95c9c6
parent377df8edd11f1e4171b20540f1c043b032d13fe0 (diff)
downloadATCD-f4afe54ae8a5527a4374c7636c7589ceddf47fdf.tar.gz
ChangeLogTag:Fri Apr 12 19:15:39 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/Asynch_Acceptor.cpp8
4 files changed, 22 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e2d38ad68fe..666d6ffe7d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Apr 12 19:15:39 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Asynch_Acceptor.cpp (parse_address): Set the entire address
+ (address and port) instead of just the IP address part.
+ Thanks to Alex Libman <AlexL@rumblegroup.com> for this fix.
+
Fri Apr 12 18:00:41 UTC 2002 Don Hinton <dhinton@ieee.org>
* ace/Log_Msg.h: Added missing includes.
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e2d38ad68fe..666d6ffe7d5 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Fri Apr 12 19:15:39 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Asynch_Acceptor.cpp (parse_address): Set the entire address
+ (address and port) instead of just the IP address part.
+ Thanks to Alex Libman <AlexL@rumblegroup.com> for this fix.
+
Fri Apr 12 18:00:41 UTC 2002 Don Hinton <dhinton@ieee.org>
* ace/Log_Msg.h: Added missing includes.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e2d38ad68fe..666d6ffe7d5 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Fri Apr 12 19:15:39 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Asynch_Acceptor.cpp (parse_address): Set the entire address
+ (address and port) instead of just the IP address part.
+ Thanks to Alex Libman <AlexL@rumblegroup.com> for this fix.
+
Fri Apr 12 18:00:41 UTC 2002 Don Hinton <dhinton@ieee.org>
* ace/Log_Msg.h: Added missing includes.
diff --git a/ace/Asynch_Acceptor.cpp b/ace/Asynch_Acceptor.cpp
index 3e116299a8d..9bcbd1c00e6 100644
--- a/ace/Asynch_Acceptor.cpp
+++ b/ace/Asynch_Acceptor.cpp
@@ -345,8 +345,8 @@ ACE_Asynch_Acceptor<HANDLER>::parse_address (const
"ACE_Asynch_Acceptor::<getpeername> failed"));
// Set the addresses.
- local_address.set_addr (&local_addr, local_size);
- remote_address.set_addr (&remote_addr, remote_size);
+ local_address.set (&local_addr, local_size);
+ remote_address.set (&remote_addr, remote_size);
// @@ Just debugging.
char local_address_buf [BUFSIZ];
@@ -389,10 +389,10 @@ ACE_Asynch_Acceptor<HANDLER>::parse_address (const
&remote_addr,
&remote_size);
- local_address.set_addr (ACE_reinterpret_cast (sockaddr_in *,
+ local_address.set (ACE_reinterpret_cast (sockaddr_in *,
local_addr),
local_size);
- remote_address.set_addr (ACE_reinterpret_cast (sockaddr_in *,
+ remote_address.set (ACE_reinterpret_cast (sockaddr_in *,
remote_addr),
remote_size);
#else