summaryrefslogtreecommitdiff
path: root/ACE/ace/SSL/SSL_Asynch_Stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/SSL/SSL_Asynch_Stream.h')
-rw-r--r--ACE/ace/SSL/SSL_Asynch_Stream.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/ACE/ace/SSL/SSL_Asynch_Stream.h b/ACE/ace/SSL/SSL_Asynch_Stream.h
index 082c022f209..39fb2bb46e2 100644
--- a/ACE/ace/SSL/SSL_Asynch_Stream.h
+++ b/ACE/ace/SSL/SSL_Asynch_Stream.h
@@ -176,11 +176,11 @@ public:
ACE_SSL_Context * context = 0);
/// Destructor
- virtual ~ACE_SSL_Asynch_Stream (void);
+ virtual ~ACE_SSL_Asynch_Stream ();
- int cancel (void);
+ int cancel ();
- int close (void);
+ int close ();
/// Return a pointer to the underlying SSL structure.
SSL *ssl () const;
@@ -292,7 +292,7 @@ protected:
/// This method is called when all SSL sessions are closed and no
/// more pending AIOs exist. It also calls users handle_wakeup().
- virtual void handle_wakeup (void);
+ virtual void handle_wakeup ();
/**
* This method will be called after a successful SSL handshake indicating
@@ -326,23 +326,23 @@ protected:
*
* true - Proceed with connection. The default implementation returns true.
*/
- virtual bool post_handshake_check (void);
+ virtual bool post_handshake_check ();
/**
* @name SSL State Machine
*/
//@{
- int do_SSL_state_machine (void);
- int do_SSL_handshake (void);
- int do_SSL_read (void);
- int do_SSL_write(void);
- int do_SSL_shutdown(void);
+ int do_SSL_state_machine ();
+ int do_SSL_handshake ();
+ int do_SSL_read ();
+ int do_SSL_write();
+ int do_SSL_shutdown();
//@}
void print_error (int err_ssl,
const ACE_TCHAR *pText);
- int pending_BIO_count (void);
+ int pending_BIO_count ();
/// This method is called to notify user handler when user's read in
/// done.
@@ -355,7 +355,7 @@ protected:
/// This method is called to notify ourself that SSL session is
/// shutdown and that there is no more I/O activity now and in the
/// future.
- int notify_close(void);
+ int notify_close();
/**
* @name BIO Helpers