summaryrefslogtreecommitdiff
path: root/ACE/ace/TLI.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 18:44:09 +0100
committerGitHub <noreply@github.com>2021-03-09 18:44:09 +0100
commitb0a0b92a0ee6bb248700d6ff4e7c51cc44db198f (patch)
treef78fc5b7b2ea337ffc306a77223018fcc780e507 /ACE/ace/TLI.h
parent199259c5d2d5f4a6550382a683f5d54ac482fcd1 (diff)
parentadc1dcda981a4c76612bedeba2dddb76aa272d6f (diff)
downloadATCD-b0a0b92a0ee6bb248700d6ff4e7c51cc44db198f.tar.gz
Merge pull request #1446 from jwillemsen/jwi-cpp11cleanup
Various cleanup and use of C++11 features
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);