summaryrefslogtreecommitdiff
path: root/ace/Acceptor.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-12 06:43:37 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-12 06:43:37 +0000
commit82731497a237bf9b1e1d78d7ee889067b1a0adfa (patch)
treeb4a2d3a10adeb44d5bbc5dc486102af3c1aff3a7 /ace/Acceptor.h
parent429bfa9aad1cdb548c537b090f6993ffdffdfc28 (diff)
downloadATCD-82731497a237bf9b1e1d78d7ee889067b1a0adfa.tar.gz
CE stuff
Diffstat (limited to 'ace/Acceptor.h')
-rw-r--r--ace/Acceptor.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ace/Acceptor.h b/ace/Acceptor.h
index 73d7deba727..d1c4149210c 100644
--- a/ace/Acceptor.h
+++ b/ace/Acceptor.h
@@ -131,14 +131,14 @@ protected:
// activates SVC_HANDLERs.
// = Dynamic linking hooks.
- virtual int init (int argc, char *argv[]);
+ virtual int init (int argc, ASYS_TCHAR *argv[]);
// Default version does no work and returns -1. Must be overloaded
// by application developer to do anything meaningful.
virtual int fini (void);
// Calls <handle_close>.
- virtual int info (char **buf, size_t) const;
+ virtual int info (ASYS_TCHAR **buf, size_t) const;
// Default version returns address info in <buf>.
// = Service management hooks.
@@ -176,8 +176,8 @@ class ACE_Strategy_Acceptor : public ACE_Acceptor <SVC_HANDLER, ACE_PEER_ACCEPTO
// particular concurrency mechanism.
public:
// = Initialization and termination methods.
- ACE_Strategy_Acceptor (const char service_name[] = 0,
- const char service_description[] = 0);
+ ACE_Strategy_Acceptor (const ASYS_TCHAR service_name[] = 0,
+ const ASYS_TCHAR service_description[] = 0);
// Default constructor.
ACE_Strategy_Acceptor (const ACE_PEER_ACCEPTOR_ADDR &local_addr,
@@ -186,8 +186,8 @@ public:
ACE_Accept_Strategy<SVC_HANDLER, ACE_PEER_ACCEPTOR_2> * = 0,
ACE_Concurrency_Strategy<SVC_HANDLER> * = 0,
ACE_Scheduling_Strategy<SVC_HANDLER> * = 0,
- const char service_name[] = 0,
- const char service_description[] = 0);
+ const ASYS_TCHAR service_name[] = 0,
+ const ASYS_TCHAR service_description[] = 0);
// Initialize the appropriate strategies for creation, passive
// connection acceptance, and concurrency, and then register <this>
// with the Reactor and listen for connection requests at the
@@ -199,8 +199,8 @@ public:
ACE_Accept_Strategy<SVC_HANDLER, ACE_PEER_ACCEPTOR_2> * = 0,
ACE_Concurrency_Strategy<SVC_HANDLER> * = 0,
ACE_Scheduling_Strategy<SVC_HANDLER> * = 0,
- const char service_name[] = 0,
- const char service_description[] = 0);
+ const ASYS_TCHAR *service_name = 0,
+ const ASYS_TCHAR *service_description = 0);
// Initialize the appropriate strategies for creation, passive
// connection acceptance, and concurrency, and then register <this>
// with the Reactor and listen for connection requests at the
@@ -238,7 +238,7 @@ protected:
virtual int fini (void);
// Calls <handle_close> when dynamically unlinked.
- virtual int info (char **buf, size_t) const;
+ virtual int info (ASYS_TCHAR **buf, size_t) const;
// Default version returns address info in <buf>.
// = The following three methods define the <Acceptor>'s strategies
@@ -320,10 +320,10 @@ protected:
// = Service information objects.
- char *service_name_;
+ ASYS_TCHAR *service_name_;
// Name of the service.
- char *service_description_;
+ ASYS_TCHAR *service_description_;
// Description of the service.
u_short service_port_;
@@ -435,7 +435,7 @@ protected:
// Called when an acceptor times out...
// = Dynamic linking hooks.
- virtual int init (int argc, char *argv[]);
+ virtual int init (int argc, ASYS_TCHAR *argv[]);
// Default version does no work and returns -1. Must be overloaded
// by application developer to do anything meaningful.
@@ -443,7 +443,7 @@ protected:
// Default version does no work and returns -1. Must be overloaded
// by application developer to do anything meaningful.
- virtual int info (char **, size_t) const;
+ virtual int info (ASYS_TCHAR **, size_t) const;
// Default version returns address info in <buf>.
// = Service management hooks.