diff options
Diffstat (limited to 'src/lib/tls/tls_messages.h')
-rw-r--r-- | src/lib/tls/tls_messages.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/tls/tls_messages.h b/src/lib/tls/tls_messages.h index 892104888..aa31fce8d 100644 --- a/src/lib/tls/tls_messages.h +++ b/src/lib/tls/tls_messages.h @@ -320,7 +320,7 @@ class BOTAN_UNSTABLE_API Server_Hello final : public Handshake_Message /** * Client Key Exchange Message */ -class BOTAN_DLL Client_Key_Exchange final : public Handshake_Message +class BOTAN_UNSTABLE_API Client_Key_Exchange final : public Handshake_Message { public: Handshake_Type type() const override { return CLIENT_KEX; } @@ -354,7 +354,7 @@ class BOTAN_DLL Client_Key_Exchange final : public Handshake_Message /** * Certificate Message */ -class BOTAN_DLL Certificate final : public Handshake_Message +class BOTAN_UNSTABLE_API Certificate final : public Handshake_Message { public: Handshake_Type type() const override { return CERTIFICATE; } @@ -377,7 +377,7 @@ class BOTAN_DLL Certificate final : public Handshake_Message /** * Certificate Status (RFC 6066) */ -class BOTAN_DLL Certificate_Status final : public Handshake_Message +class BOTAN_UNSTABLE_API Certificate_Status final : public Handshake_Message { public: Handshake_Type type() const override { return CERTIFICATE_STATUS; } @@ -398,7 +398,7 @@ class BOTAN_DLL Certificate_Status final : public Handshake_Message /** * Certificate Request Message */ -class BOTAN_DLL Certificate_Req final : public Handshake_Message +class BOTAN_UNSTABLE_API Certificate_Req final : public Handshake_Message { public: Handshake_Type type() const override { return CERTIFICATE_REQUEST; } @@ -465,7 +465,7 @@ class BOTAN_UNSTABLE_API Certificate_Verify final : public Handshake_Message /** * Finished Message */ -class BOTAN_DLL Finished final : public Handshake_Message +class BOTAN_UNSTABLE_API Finished final : public Handshake_Message { public: Handshake_Type type() const override { return FINISHED; } @@ -504,7 +504,7 @@ class BOTAN_UNSTABLE_API Hello_Request final : public Handshake_Message /** * Server Key Exchange Message */ -class BOTAN_DLL Server_Key_Exchange final : public Handshake_Message +class BOTAN_UNSTABLE_API Server_Key_Exchange final : public Handshake_Message { public: Handshake_Type type() const override { return SERVER_KEX; } @@ -572,7 +572,7 @@ class BOTAN_DLL Server_Key_Exchange final : public Handshake_Message /** * Server Hello Done Message */ -class BOTAN_DLL Server_Hello_Done final : public Handshake_Message +class BOTAN_UNSTABLE_API Server_Hello_Done final : public Handshake_Message { public: Handshake_Type type() const override { return SERVER_HELLO_DONE; } @@ -613,7 +613,7 @@ class BOTAN_UNSTABLE_API New_Session_Ticket final : public Handshake_Message /** * Change Cipher Spec */ -class BOTAN_DLL Change_Cipher_Spec final : public Handshake_Message +class BOTAN_UNSTABLE_API Change_Cipher_Spec final : public Handshake_Message { public: Handshake_Type type() const override { return HANDSHAKE_CCS; } |