aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_client.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-01-23 15:30:29 +0000
committerlloyd <[email protected]>2012-01-23 15:30:29 +0000
commita445f7f4a1089fc034c35c500e1572eb9518f44f (patch)
tree3231b324a290cb9c67e9a0512a40acad8fa024a1 /src/tls/tls_client.h
parent8bba8bab6077ee184c102d6634b288e7dd32b1dc (diff)
Since this branch is hugely API breaking already, go ahead and put
everything into a new namespace (Botan::TLS), removing the TLS_ prefixes on everything.
Diffstat (limited to 'src/tls/tls_client.h')
-rw-r--r--src/tls/tls_client.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/tls/tls_client.h b/src/tls/tls_client.h
index 95b5c8f61..d67a14b75 100644
--- a/src/tls/tls_client.h
+++ b/src/tls/tls_client.h
@@ -15,10 +15,12 @@
namespace Botan {
+namespace TLS {
+
/**
* SSL/TLS Client
*/
-class BOTAN_DLL TLS_Client : public TLS_Channel
+class BOTAN_DLL Client : public Channel
{
public:
/**
@@ -40,12 +42,12 @@ class BOTAN_DLL TLS_Client : public TLS_Channel
* called with the list of protocols the server advertised;
* the client should return the protocol it would like to use.
*/
- TLS_Client(std::tr1::function<void (const byte[], size_t)> socket_output_fn,
+ Client(std::tr1::function<void (const byte[], size_t)> socket_output_fn,
std::tr1::function<void (const byte[], size_t, u16bit)> proc_fn,
- std::tr1::function<bool (const TLS_Session&)> handshake_complete,
- TLS_Session_Manager& session_manager,
+ std::tr1::function<bool (const Session&)> handshake_complete,
+ Session_Manager& session_manager,
Credentials_Manager& creds,
- const TLS_Policy& policy,
+ const Policy& policy,
RandomNumberGenerator& rng,
const std::string& servername = "",
std::tr1::function<std::string (std::vector<std::string>)> next_protocol =
@@ -58,12 +60,14 @@ class BOTAN_DLL TLS_Client : public TLS_Channel
void alert_notify(bool is_fatal, Alert_Type type);
- const TLS_Policy& policy;
+ const Policy& policy;
RandomNumberGenerator& rng;
- TLS_Session_Manager& session_manager;
+ Session_Manager& session_manager;
Credentials_Manager& creds;
};
}
+}
+
#endif