From f4afe54ae8a5527a4374c7636c7589ceddf47fdf Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Fri, 12 Apr 2002 23:21:22 +0000 Subject: ChangeLogTag:Fri Apr 12 19:15:39 2002 Steve Huston --- ChangeLog | 6 ++++++ ChangeLogs/ChangeLog-02a | 6 ++++++ ChangeLogs/ChangeLog-03a | 6 ++++++ ace/Asynch_Acceptor.cpp | 8 ++++---- 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 + + * ace/Asynch_Acceptor.cpp (parse_address): Set the entire address + (address and port) instead of just the IP address part. + Thanks to Alex Libman for this fix. + Fri Apr 12 18:00:41 UTC 2002 Don Hinton * 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 + + * ace/Asynch_Acceptor.cpp (parse_address): Set the entire address + (address and port) instead of just the IP address part. + Thanks to Alex Libman for this fix. + Fri Apr 12 18:00:41 UTC 2002 Don Hinton * 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 + + * ace/Asynch_Acceptor.cpp (parse_address): Set the entire address + (address and port) instead of just the IP address part. + Thanks to Alex Libman for this fix. + Fri Apr 12 18:00:41 UTC 2002 Don Hinton * 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::parse_address (const "ACE_Asynch_Acceptor:: 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::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 -- cgit v1.2.1