summaryrefslogtreecommitdiff
path: root/ace/ATM_Addr.h
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commitf40cc79fed36173f3588f26d7bec8ee7705dc153 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/ATM_Addr.h
parent2afe8d4640d7b30bfe959c16212ea87df8e6ec7c (diff)
downloadATCD-f40cc79fed36173f3588f26d7bec8ee7705dc153.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/ATM_Addr.h')
-rw-r--r--ace/ATM_Addr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/ATM_Addr.h b/ace/ATM_Addr.h
index 4e78efd4c35..1c24b1088f2 100644
--- a/ace/ATM_Addr.h
+++ b/ace/ATM_Addr.h
@@ -58,7 +58,7 @@ public:
// is vendor specific (FORE systems). May need to change when other
// vendors are supported.
- ACE_ATM_Addr (const ASYS_TCHAR sap[],
+ ACE_ATM_Addr (const ACE_TCHAR sap[],
unsigned char selector = DEFAULT_SELECTOR);
// Initializes an <ACE_ATM_Addr> from the <sap> which can be
// "atm-address" (e.g.,
@@ -83,20 +83,20 @@ public:
// structure. This is vendor specific (FORE systems). May need to
// change when other vendors are supported.
- int set (const ASYS_TCHAR sap[],
+ int set (const ACE_TCHAR sap[],
unsigned char selector = DEFAULT_SELECTOR);
// Initializes an <ACE_ATM_Addr> from the <sap> which can be
// "atm-address" (e.g.,
// "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") or "hostname"
// (e.g., "frisbee.cs.wustl.edu").
- virtual int string_to_addr (const ASYS_TCHAR sap[]);
+ virtual int string_to_addr (const ACE_TCHAR sap[]);
// Initializes an <ACE_ATM_Addr> from the <sap> which can be
// "atm-address" (e.g.,
// "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") or "hostname"
// (e.g., "frisbee.cs.wustl.edu").
- virtual int addr_to_string (ASYS_TCHAR addr[],
+ virtual int addr_to_string (ACE_TCHAR addr[],
size_t addrlen) const;
// Return the character representation of the ATM address (e.g.,
// "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") storing it in
@@ -104,7 +104,7 @@ public:
// version is reentrant. Returns -1 if the <addrlen> of the <addr>
// is too small, else 0.
- const ASYS_TCHAR *addr_to_string (void) const;
+ const ACE_TCHAR *addr_to_string (void) const;
// Return the character representation of the ATM address (e.g.,
// "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00"). Returns -1
// if the <size> of the <buffer> is too small, else 0.(This version