diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-07 08:03:55 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-07 08:03:55 +0000 |
commit | 8121220b99826e3ba3f230e7725060de788c00a9 (patch) | |
tree | bbf322a3bd9db404423f5ae4f5dc695a4a53fa23 /ace/INET_Addr.h | |
parent | 1365a33aee7b1bc80dc0c907e5f8b9aea38b493b (diff) | |
download | ATCD-8121220b99826e3ba3f230e7725060de788c00a9.tar.gz |
ChangeLogTag:Sat Oct 7 000:50:02 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/INET_Addr.h')
-rw-r--r-- | ace/INET_Addr.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/INET_Addr.h b/ace/INET_Addr.h index f0af225a163..a55c0b6ae66 100644 --- a/ace/INET_Addr.h +++ b/ace/INET_Addr.h @@ -62,13 +62,13 @@ public: ACE_INET_Addr (const ACE_TCHAR port_name[], const ACE_TCHAR host_name[], - const ACE_TCHAR protocol[] = ACE_TEXT ("tcp")); + const ACE_TCHAR protocol[] = ACE_LIB_TEXT ("tcp")); // Uses <getservbyname> to create an <ACE_INET_Addr> from a // <port_name>, the remote <host_name>, and the <protocol>. ACE_INET_Addr (const ACE_TCHAR port_name[], ACE_UINT32 ip_addr, - const ACE_TCHAR protocol[] = ACE_TEXT ("tcp")); + const ACE_TCHAR protocol[] = ACE_LIB_TEXT ("tcp")); // Uses <getservbyname> to create an <ACE_INET_Addr> from a // <port_name>, an Internet <ip_addr>, and the <protocol>. This // method assumes that <ip_addr> is in host byte order. @@ -102,13 +102,13 @@ public: int set (const ACE_TCHAR port_name[], const ACE_TCHAR host_name[], - const ACE_TCHAR protocol[] = ACE_TEXT ("tcp")); + const ACE_TCHAR protocol[] = ACE_LIB_TEXT ("tcp")); // Uses <getservbyname> to initialize an <ACE_INET_Addr> from a // <port_name>, the remote <host_name>, and the <protocol>. int set (const ACE_TCHAR port_name[], ACE_UINT32 ip_addr, - const ACE_TCHAR protocol[] = ACE_TEXT ("tcp")); + const ACE_TCHAR protocol[] = ACE_LIB_TEXT ("tcp")); // Uses <getservbyname> to initialize an <ACE_INET_Addr> from a // <port_name>, an <ip_addr>, and the <protocol>. This assumes that // <ip_addr> is already in network byte order. |