summaryrefslogtreecommitdiff
path: root/ACE/ace/SOCK_SEQPACK_Association.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/SOCK_SEQPACK_Association.h')
-rw-r--r--ACE/ace/SOCK_SEQPACK_Association.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/SOCK_SEQPACK_Association.h b/ACE/ace/SOCK_SEQPACK_Association.h
index a9a0a80cc6e..9e2265d5984 100644
--- a/ACE/ace/SOCK_SEQPACK_Association.h
+++ b/ACE/ace/SOCK_SEQPACK_Association.h
@@ -77,13 +77,13 @@ class ACE_Export ACE_SOCK_SEQPACK_Association : public ACE_SOCK_IO
public:
// Initialization and termination methods.
/// Constructor.
- ACE_SOCK_SEQPACK_Association (void);
+ ACE_SOCK_SEQPACK_Association ();
/// Constructor (sets the underlying ACE_HANDLE with <h>).
ACE_SOCK_SEQPACK_Association (ACE_HANDLE h);
/// Destructor.
- ~ACE_SOCK_SEQPACK_Association (void);
+ ~ACE_SOCK_SEQPACK_Association ();
/**
* Return local endpoint addresses in the referenced array of
@@ -161,22 +161,22 @@ public:
// = Selectively close endpoints.
/// Close down the reader.
- int close_reader (void);
+ int close_reader ();
/// Close down the writer.
- int close_writer (void);
+ int close_writer ();
/**
* Close down the socket (we need this to make things work correctly
* on Win32, which requires use to do a <close_writer> before doing
* the close to avoid losing data). */
- int close (void);
+ int close ();
/**
* Abort the association according to RFC 2960 9.1 through the API
* in draft-ietf-tsvwg-sctpsocket-09 7.1.4.
*/
- int abort (void);
+ int abort ();
// = Meta-type info
typedef ACE_Multihomed_INET_Addr PEER_ADDR;