diff options
author | lloyd <[email protected]> | 2012-06-09 07:14:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-06-09 07:14:36 +0000 |
commit | 55538ea412ef728f04ca4d86ec6b34360f7bb92c (patch) | |
tree | fe3a934f8e66642b67120cc022b8776c363f112a /src/tls/tls_client.h | |
parent | 6af7a5414fde971efd767f3e881a16acdda6f497 (diff) |
m_ namespace Channel, Client, and Server.
Fix printing of Camellia ciphersuites.
Diffstat (limited to 'src/tls/tls_client.h')
-rw-r--r-- | src/tls/tls_client.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tls/tls_client.h b/src/tls/tls_client.h index 2844780bd..7e38465af 100644 --- a/src/tls/tls_client.h +++ b/src/tls/tls_client.h @@ -60,10 +60,10 @@ class BOTAN_DLL Client : public Channel void alert_notify(const Alert& alert); - const Policy& policy; - RandomNumberGenerator& rng; - Session_Manager& session_manager; - Credentials_Manager& creds; + const Policy& m_policy; + RandomNumberGenerator& m_rng; + Session_Manager& m_session_manager; + Credentials_Manager& m_creds; const std::string m_hostname; }; |