aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/tls_server.cpp
diff options
context:
space:
mode:
authorMatthias Gierlings <[email protected]>2016-03-31 16:21:45 +0200
committerMatthias Gierlings <[email protected]>2016-06-19 18:25:50 +0200
commitaaec83d928306822dc8642dd5e0a068740548863 (patch)
tree48bb6245c6141223e11af70a62fb100306581c38 /src/lib/tls/tls_server.cpp
parent8350d1e081dc4c2330f4c7a35a746b7682d7f0c1 (diff)
Fix for amalgamation build problems
- fixed broken tls_magic.h include - added forward declarations for Handshake_IO and Handshake_Hash in tls_handshake_msg.h - comment after #endif in tls_server_handshake.h caused surplus #endif in botan_all_internal.h - removed unnecessary semicolons causing -Wpedantic warnings.
Diffstat (limited to 'src/lib/tls/tls_server.cpp')
-rw-r--r--src/lib/tls/tls_server.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/tls/tls_server.cpp b/src/lib/tls/tls_server.cpp
index de1e8668d..b1fff5fec 100644
--- a/src/lib/tls/tls_server.cpp
+++ b/src/lib/tls/tls_server.cpp
@@ -8,9 +8,10 @@
#include <botan/tls_server.h>
#include <botan/internal/tls_handshake_state.h>
+#include <botan/internal/tls_server_handshake_state.h>
#include <botan/internal/tls_messages.h>
#include <botan/internal/stl_util.h>
-#include "tls_magic.h"
+#include <botan/tls_magic.h>
namespace Botan {