summaryrefslogtreecommitdiff
path: root/apps/Gateway/Peer/Options.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/Gateway/Peer/Options.h')
-rw-r--r--apps/Gateway/Peer/Options.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/Gateway/Peer/Options.h b/apps/Gateway/Peer/Options.h
index bc872fe7df4..371b043deac 100644
--- a/apps/Gateway/Peer/Options.h
+++ b/apps/Gateway/Peer/Options.h
@@ -39,7 +39,7 @@ public:
static Options *instance (void);
// Return Singleton.
- void parse_args (int argc, ACE_TCHAR *argv[]);
+ void parse_args (int argc, char *argv[]);
// Parse the arguments and set the options.
// = Accessor methods.
@@ -64,7 +64,7 @@ public:
// The connector port number, i.e., the one that we use to actively
// establish connections with a gatewayd and create a Consumer.
- const ACE_TCHAR *connector_host (void) const;
+ const char *connector_host (void) const;
// Our connector port host, i.e., the host running the gatewayd
// process.
@@ -119,7 +119,7 @@ private:
// The connector port number, i.e., the one that we use to actively
// establish connections with a gatewayd and create a Consumer.
- const ACE_TCHAR *connector_host_;
+ const char *connector_host_;
// Our connector host, i.e., where the gatewayd process is running.
long timeout_;