diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-01-18 18:25:23 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-01-18 18:25:23 +0000 |
commit | 13b05a6f46132af33614ffdf3540d719513a7345 (patch) | |
tree | 23677eb4dc77db8c0576cdc2d598ededc9a46563 /apps | |
parent | 75234e4536867d3d0f578a7a4f469bbc49d48661 (diff) | |
download | ATCD-13b05a6f46132af33614ffdf3540d719513a7345.tar.gz |
ChangeLogTag: Wed Jan 18 18:22:13 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/Gateway/Gateway/Event_Channel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Gateway/Gateway/Event_Channel.cpp b/apps/Gateway/Gateway/Event_Channel.cpp index d8e089b28df..e23eb69dcfe 100644 --- a/apps/Gateway/Gateway/Event_Channel.cpp +++ b/apps/Gateway/Gateway/Event_Channel.cpp @@ -370,7 +370,7 @@ Event_Channel::initiate_acceptors (void) { if (this->consumer_acceptor_.open - (Options::instance ()->consumer_acceptor_port (), + (ACE_INET_Addr (Options::instance ()->consumer_acceptor_port ()), ACE_Reactor::instance (), Options::instance ()->blocking_semantics ()) == -1) ACE_ERROR_RETURN ((LM_ERROR, @@ -385,7 +385,7 @@ Event_Channel::initiate_acceptors (void) if (Options::instance ()->enabled (Options::SUPPLIER_ACCEPTOR)) { if(this->supplier_acceptor_.open - (Options::instance ()->supplier_acceptor_port (), + (ACE_INET_Addr (Options::instance ()->supplier_acceptor_port ()), ACE_Reactor::instance (), Options::instance ()->blocking_semantics ()) == -1) ACE_ERROR_RETURN ((LM_ERROR, |