summaryrefslogtreecommitdiff
path: root/ACE/ace/Asynch_Acceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Asynch_Acceptor.h')
-rw-r--r--ACE/ace/Asynch_Acceptor.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Asynch_Acceptor.h b/ACE/ace/Asynch_Acceptor.h
index 172649e5000..7760ba53d5c 100644
--- a/ACE/ace/Asynch_Acceptor.h
+++ b/ACE/ace/Asynch_Acceptor.h
@@ -45,10 +45,10 @@ class ACE_Asynch_Acceptor : public ACE_Handler
{
public:
/// A do nothing constructor.
- ACE_Asynch_Acceptor (void);
+ ACE_Asynch_Acceptor ();
/// Virtual destruction
- virtual ~ACE_Asynch_Acceptor (void);
+ virtual ~ACE_Asynch_Acceptor ();
/**
* @c open starts one or more asynchronous accept requests on a
@@ -138,7 +138,7 @@ public:
* @note On Windows, only accept operations initiated by the calling thread
* are canceled.
*/
- virtual int cancel (void);
+ virtual int cancel ();
/**
* Template method to validate peer before service is opened.
@@ -175,7 +175,7 @@ public:
* @c open() method's @a reissue_accept argument. That value can also
* be changed using the @c reissue_accept() method.
*/
- virtual int should_reissue_accept (void);
+ virtual int should_reissue_accept ();
//
// These are low level tweaking methods
@@ -224,14 +224,14 @@ protected:
ACE_INET_Addr &local_address);
/// Return the asynch accept object.
- ACE_Asynch_Accept &asynch_accept (void);
+ ACE_Asynch_Accept &asynch_accept ();
/**
* This is the template method used to create new handler.
* Subclasses must overwrite this method if a new handler creation
* strategy is required.
*/
- virtual HANDLER *make_handler (void);
+ virtual HANDLER *make_handler ();
/// Address family used to open this object. Obtained from @a address passed
/// to @c open().