diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ssl/tls_client.cpp | 2 | ||||
-rw-r--r-- | src/ssl/tls_client.h | 2 | ||||
-rw-r--r-- | src/ssl/tls_server.h | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/ssl/tls_client.cpp b/src/ssl/tls_client.cpp index 505b2c22a..5447e9904 100644 --- a/src/ssl/tls_client.cpp +++ b/src/ssl/tls_client.cpp @@ -17,9 +17,9 @@ namespace Botan { namespace { -// FIXME: checks are wrong for session reuse (add a flag for that) /** * Verify the state transition is allowed +* FIXME: checks are wrong for session reuse (add a flag for that) */ void client_check_state(Handshake_Type new_msg, Handshake_State* state) { diff --git a/src/ssl/tls_client.h b/src/ssl/tls_client.h index 913a87e50..7d2ce9cda 100644 --- a/src/ssl/tls_client.h +++ b/src/ssl/tls_client.h @@ -17,7 +17,7 @@ namespace Botan { /** -* TLS Client +* SSL/TLS Client */ class BOTAN_DLL TLS_Client : public TLS_Connection { diff --git a/src/ssl/tls_server.h b/src/ssl/tls_server.h index 69ccf46e8..a6b0f9cb4 100644 --- a/src/ssl/tls_server.h +++ b/src/ssl/tls_server.h @@ -18,7 +18,6 @@ namespace Botan { /** * TLS Server */ - class BOTAN_DLL TLS_Server : public TLS_Connection { public: |