diff options
author | lloyd <[email protected]> | 2010-10-29 13:25:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-29 13:25:45 +0000 |
commit | df0dfeb904485bacb8034d0468b4498130939acc (patch) | |
tree | caf691e1af99423ed6c4915d6a2d46a72817507f /src | |
parent | 6c24ca7ebd1e1eae2c32c1306a22758ef3d656ff (diff) |
Cleanup
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: |