summaryrefslogtreecommitdiff
path: root/ACE/ace/TLI_Acceptor.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 09:35:44 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 09:35:44 +0000
commitccd8d0fde164448b6258d9de3574e52374edc829 (patch)
treec955d352994cbd1cd500768dfe64f31e35ecfd9a /ACE/ace/TLI_Acceptor.cpp
parent7c4c934daf46588a0afbc2cf974fdc8946d49815 (diff)
downloadATCD-ccd8d0fde164448b6258d9de3574e52374edc829.tar.gz
Diffstat (limited to 'ACE/ace/TLI_Acceptor.cpp')
-rw-r--r--ACE/ace/TLI_Acceptor.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/TLI_Acceptor.cpp b/ACE/ace/TLI_Acceptor.cpp
index b6820c5db4e..0fdd265fb7a 100644
--- a/ACE/ace/TLI_Acceptor.cpp
+++ b/ACE/ace/TLI_Acceptor.cpp
@@ -30,7 +30,7 @@ public:
ACE_HANDLE open (ACE_HANDLE fd, int size);
int close (void);
- int enqueue (const char device[], int restart, int rwflag);
+ int enqueue (const char device[], bool restart, int rwflag);
int dequeue (ACE_TLI_Request *&ptr);
int remove (int sequence_number);
@@ -238,7 +238,7 @@ ACE_TLI_Request_Queue::ACE_TLI_Request_Queue (void)
int
ACE_TLI_Request_Queue::enqueue (const char device[],
- int restart, int rwflag)
+ bool restart, int rwflag)
{
ACE_TRACE ("ACE_TLI_Request_Queue::enqueue");
ACE_TLI_Request *temp = this->alloc ();
@@ -430,7 +430,7 @@ ACE_TLI_Acceptor::close (void)
// events while we are trying to accept a new connection request.
int
-ACE_TLI_Acceptor::handle_async_event (int restart, int rwf)
+ACE_TLI_Acceptor::handle_async_event (bool restart, int rwf)
{
ACE_TRACE ("ACE_TLI_Acceptor::handle_async_event");
int event = this->look ();
@@ -456,8 +456,8 @@ int
ACE_TLI_Acceptor::accept (ACE_TLI_Stream &new_tli_sap,
ACE_Addr *remote_addr,
ACE_Time_Value *timeout,
- int restart,
- int reset_new_handle,
+ bool restart,
+ bool reset_new_handle,
int rwf,
netbuf *udata,
netbuf *opt)