diff options
author | lloyd <[email protected]> | 2012-07-16 16:01:30 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-07-16 16:01:30 +0000 |
commit | 848639860716273e29eb66b0a181d036a534fdae (patch) | |
tree | 21a8a4aabe4b74baa6319064951efeb9b0cf7bf8 /src/tls/tls_client.h | |
parent | 3d2867a708d9faf1837f5b1e2f44ded75da60780 (diff) |
Add a class that handles writing handshake messages instead of pushing
that task to Record_Writer. Needed for DTLS work.
Diffstat (limited to 'src/tls/tls_client.h')
-rw-r--r-- | src/tls/tls_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_client.h b/src/tls/tls_client.h index b62e4aadf..ad13a94dc 100644 --- a/src/tls/tls_client.h +++ b/src/tls/tls_client.h @@ -73,7 +73,7 @@ class BOTAN_DLL Client : public Channel void alert_notify(const Alert& alert) override; - class Handshake_Reader* new_handshake_reader() const override; + class Handshake_State* new_handshake_state() override; const Policy& m_policy; RandomNumberGenerator& m_rng; |