diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-10-21 22:25:04 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-10-21 22:25:04 +0000 |
commit | 7421f4071f091ae70c135cd220c1b21bdc7e5c22 (patch) | |
tree | 05e14d497e69acf3efc0d59ad5380b8918a64fd0 /tests | |
parent | bee843e6cc0374bebe0c4aa1fe2b5f6f00f10cb6 (diff) | |
download | ATCD-7421f4071f091ae70c135cd220c1b21bdc7e5c22.tar.gz |
ChangeLogTag:Sun Oct 21 15:22:57 2001 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Proactor_Test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Proactor_Test.cpp b/tests/Proactor_Test.cpp index b13b6bd5eb7..c8c3ef80b59 100644 --- a/tests/Proactor_Test.cpp +++ b/tests/Proactor_Test.cpp @@ -64,7 +64,7 @@ static int max_aio_operations = 0; static int both = 0; // Host that we're connecting to. -static ACE_TCHAR *host = 0; +static const ACE_TCHAR *host = 0; // number of Senders instances static int senders = 1; @@ -1114,8 +1114,8 @@ parse_args (int argc, ACE_TCHAR *argv[]) { both = 1; // client and server simultaneosly duplex = 1; // full duplex is on - host= ACE_TEXT ("localhost"); // server to connect - port= ACE_DEFAULT_SERVER_PORT; // port to connect/listen + host = ACE_TEXT ("localhost"); // server to connect + port = ACE_DEFAULT_SERVER_PORT; // port to connect/listen max_aio_operations = 512; // POSIX Proactor params #if defined (sun) proactor_type = 3; // Proactor type for SunOS |