summaryrefslogtreecommitdiff
path: root/ACE/ace/TLI.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/TLI.h')
-rw-r--r--ACE/ace/TLI.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/TLI.h b/ACE/ace/TLI.h
index d2091787c38..bfa0e19584c 100644
--- a/ACE/ace/TLI.h
+++ b/ACE/ace/TLI.h
@@ -59,7 +59,7 @@ public:
struct t_info *info = 0);
/// Close a TLI endpoint and release resources.
- int close (void);
+ int close ();
/// Set underlying protocol options.
int set_option (int level, int option, void *optval, int optlen);
@@ -68,11 +68,11 @@ public:
int get_option (int level, int option, void *optval, int &optlen);
// = Calls to underlying TLI operations.
- int look (void) const;
+ int look () const;
int rcvdis (struct t_discon * = 0) const;
int snddis (struct t_call * = 0) const;
- int sndrel (void) const;
- int rcvrel (void) const;
+ int sndrel () const;
+ int rcvrel () const;
/// Return our local endpoint address.
int get_local_addr (ACE_Addr &) const;
@@ -86,10 +86,10 @@ public:
protected:
// = Ensure we are an abstract class.
/// Default constructor.
- ACE_TLI (void);
+ ACE_TLI ();
/// Destructor.
- ~ACE_TLI (void);
+ ~ACE_TLI ();
/// Initialize a TLI endpoint.
ACE_TLI (const char device[], int oflag = O_RDWR, struct t_info *info = 0);