diff options
author | lloyd <[email protected]> | 2012-11-01 21:41:52 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-11-01 21:41:52 +0000 |
commit | a3001b7fb821bc75523436912385278d7ed31b31 (patch) | |
tree | e300a68c28d405f439734718aa3fee7e135f2797 /src/tls/tls_channel.h | |
parent | ae4685b6d65870530148dcb0d50d8bcc89692230 (diff) |
Move Channel::is_{active,closed} to source file
Diffstat (limited to 'src/tls/tls_channel.h')
-rw-r--r-- | src/tls/tls_channel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/tls_channel.h b/src/tls/tls_channel.h index 71ef56069..1a30c5604 100644 --- a/src/tls/tls_channel.h +++ b/src/tls/tls_channel.h @@ -56,12 +56,12 @@ class BOTAN_DLL Channel /** * @return true iff the connection is active for sending application data */ - bool is_active() const { return m_active_state.get(); } + bool is_active() const; /** * @return true iff the connection has been definitely closed */ - bool is_closed() const { return m_connection_closed; } + bool is_closed() const; /** * Attempt to renegotiate the session |