summaryrefslogtreecommitdiff
path: root/ACE/ace/Asynch_Connector.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-07-31 18:23:50 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-07-31 18:23:50 +0000
commit7d4361e68588ce86ea329886eb3d618e8dbd3be2 (patch)
tree8b06b01347986111c082ac4884f660ab0c7ab261 /ACE/ace/Asynch_Connector.cpp
parent422d9012926a0cfed2fa55dbdacdc5d6c06b1805 (diff)
downloadATCD-7d4361e68588ce86ea329886eb3d618e8dbd3be2.tar.gz
Tue Jul 31 18:14:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Asynch_Connector.cpp')
-rw-r--r--ACE/ace/Asynch_Connector.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/ACE/ace/Asynch_Connector.cpp b/ACE/ace/Asynch_Connector.cpp
index 65b23f9a60c..cf368e68947 100644
--- a/ACE/ace/Asynch_Connector.cpp
+++ b/ACE/ace/Asynch_Connector.cpp
@@ -49,8 +49,8 @@ ACE_Asynch_Connector<HANDLER>::open (int pass_addresses,
0,
this->proactor ()) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_LIB_TEXT ("%p\n"),
- ACE_LIB_TEXT ("ACE_Asynch_Connect::open")),
+ ACE_TEXT ("%p\n"),
+ ACE_TEXT ("ACE_Asynch_Connect::open")),
-1);
return 0;
}
@@ -68,8 +68,8 @@ ACE_Asynch_Connector<HANDLER>::connect (const ACE_INET_Addr & remote_sap,
reuse_addr,
act) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_LIB_TEXT ("%p\n"),
- ACE_LIB_TEXT ("ACE_Asynch_Connect::connect")),
+ ACE_TEXT ("%p\n"),
+ ACE_TEXT ("ACE_Asynch_Connect::connect")),
-1);
return 0;
}
@@ -99,8 +99,8 @@ ACE_Asynch_Connector<HANDLER>::handle_connect (const ACE_Asynch_Connect::Result
{
error = 1;
ACE_ERROR ((LM_ERROR,
- ACE_LIB_TEXT ("%p\n"),
- ACE_LIB_TEXT ("ACE_Asynch_Connector::handle_connect : Set blocking mode")));
+ ACE_TEXT ("%p\n"),
+ ACE_TEXT ("ACE_Asynch_Connector::handle_connect : Set blocking mode")));
}
// Parse the addresses.
@@ -129,8 +129,8 @@ ACE_Asynch_Connector<HANDLER>::handle_connect (const ACE_Asynch_Connect::Result
{
error = 1;
ACE_ERROR ((LM_ERROR,
- ACE_LIB_TEXT ("%p\n"),
- ACE_LIB_TEXT ("ACE_Asynch_Connector::handle_connect : Making of new handler failed")));
+ ACE_TEXT ("%p\n"),
+ ACE_TEXT ("ACE_Asynch_Connector::handle_connect : Making of new handler failed")));
}
}
@@ -204,16 +204,16 @@ ACE_Asynch_Connector<HANDLER>::parse_address (const ACE_Asynch_Connect::Result &
reinterpret_cast<sockaddr *> (&local_addr),
&local_size) < 0)
ACE_ERROR ((LM_ERROR,
- ACE_LIB_TEXT("%p\n"),
- ACE_LIB_TEXT("ACE_Asynch_Connector::<getsockname> failed")));
+ ACE_TEXT("%p\n"),
+ ACE_TEXT("ACE_Asynch_Connector::<getsockname> failed")));
// Get the remote address.
if (ACE_OS::getpeername (result.connect_handle (),
reinterpret_cast<sockaddr *> (&remote_addr),
&remote_size) < 0)
ACE_ERROR ((LM_ERROR,
- ACE_LIB_TEXT("%p\n"),
- ACE_LIB_TEXT("ACE_Asynch_Connector::<getpeername> failed")));
+ ACE_TEXT("%p\n"),
+ ACE_TEXT("ACE_Asynch_Connector::<getpeername> failed")));
// Set the addresses.
local_address.set (reinterpret_cast<sockaddr_in *> (&local_addr),